@ankitmohapatra4302

a,b=b,a 
print(a,b)
 is it correct?

@abduljayconteh1858

temp=a
a=b
b=temp
print(a)
print(b)