Algorithm/boj

[파이썬] 1000 A+B

takeU 2022. 2. 18. 10:24
반응형
a, b = map(int, input().split())
print(a + b)