diff --git a/basics/swap.py b/basics/swap.py new file mode 100644 index 0000000..f1f48f3 --- /dev/null +++ b/basics/swap.py @@ -0,0 +1,10 @@ +#A basic swap programming program made in python with just few lines of code +a=int(input("ENTER NUMBER 1: ")) +b=int(input("ENTER NUMBER 2: ")) +#Enter two numbers and swap there values +#write your code here + + + +print("NUMNBER 1 :",a) +print("NUMBER 2 :",b)