0
Write a program to swap 2 variables
takes no argumaents
3 Respostas
0
which language ?
0
#program to swap 2 variables
a=int(input(" enter the first number :"))
b=int(input ( "enter the second number :" ) )
a,b=b,a
print(a)
print (b)
#done😉#
- 1
a=int (input ())
b=int(input ())
a, b=b, a