print('Enter two variables') a = input() #suppose 2 nilam b = input()#suppose 3 nilam x = int(a) y = int(b) x = x-y #now we stored value of x-y in x variable y = x+y #now we stored value of x+y in y variable x = y-x print(x) print(y)