코딩 테스트 준비하기/백준 - 입출력
[1000] A + B
젤리의it
2023. 6. 27. 19:34
A,B = map(int, input().split())
print(A+B)
A,B = map(int, input().split())
print(A+B)