Donate Us
Write a Python Program to swap two numbers without using third Variable Test Case 1 Input (stdin) 10 20 Expected Output 20 10 Test Case 2 Input (stdin) 30 50 Expected Output 50 30
n=int(input())
i=int(input())
print(i)
print(n)