๐ Python/๋ฐฑ์ค
[10757]ํฐ ์ A+B
Jayden1116
2022. 3. 17. 23:48
import sys
A, B =map(int, sys.stdin.readline().strip().split())
print(A + B)