Skip to content

Commit 6f50dae

Browse files
committed
[BOJ] #31403. A+B-C / 브론즈4 / 2분 / 성공
1 parent cb44434 commit 6f50dae

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import sys
2+
from math import ceil
3+
input = sys.stdin.readline
4+
5+
a = int(input())
6+
b = int(input())
7+
c = int(input())
8+
9+
print(a + b - c)
10+
print(int(str(a)+str(b))-c)

0 commit comments

Comments
 (0)