5 lines
68 B
Python
5 lines
68 B
Python
a = int(input())
|
|
b = int(input())
|
|
c = int(input())
|
|
print(c - a - b)
|