题解 | #函数求差#
函数求差
https://www.nowcoder.com/practice/ad1a6e344add40bdb05c44ce086c1e94
x = int(input()) y = int(input()) def f(a,b): return a - b print(f(x,y),f(y,x),sep = '\n')
函数求差
https://www.nowcoder.com/practice/ad1a6e344add40bdb05c44ce086c1e94
x = int(input()) y = int(input()) def f(a,b): return a - b print(f(x,y),f(y,x),sep = '\n')
相关推荐