본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31403번  A + B - C

by 현장 2024. 2. 7.

-Code

a = int(input())
b = int(input())
c = int(input())

print(a + b - c)
print(int(str(a) + str(b)) - c )