NP32 函数求差

思路:

定义函数,然后传参调用即可;

代码如下:

def cal(x,y):
    return x-y 
x = input()
y = input()
print(cal(x,y))
print(cal(y,x))