def call(x,y): return x-y x=int(input()) y=int(input()) print(call(x,y)) temp=x x=y y=temp print(call(x,y))
相关推荐