3 lines
84 B
Python
3 lines
84 B
Python
a,b,c = input(), input(), input()
|
|
print(int(a)+int(b)-int(c))
|
|
print(int(a+b)-int(c)) |