Algorithm/๋ฐฑ์ค
[๋ฐฑ์ค] 10961 A+B-4 (ํ์ด์ฌ/python)
chjcoder
2023. 6. 19. 20:36
๐๋ฌธ์
https://www.acmicpc.net/problem/10951
๐์ด๋ค ์๊ณ ๋ฆฌ์ฆ?
1. ๋จ์ ๊ตฌํ!
๐ป์ฝ๋
while True:
try:
a,b = map(int,input().split())
except:
break
print(a+b)