python-algorithm

[백준] 10757

무적김두칠 2020. 12. 14. 14:22

1
2
3
import sys
a,b=map(int,sys.stdin.readline().split())
print(a+b)
cs

python은 그냥 하면 될낀데,

C같은 언어는 아마 선언을 long long int 이런식으로 해야겠죠,,?

반응형