Write a program that examines two numbers and exchanges their position using only the else clause
A = int(input()) B = int(input()) if A != B: A = A + B B = A - B print(A,B)