백준풀이(Python)

[백준] 1000번 : A+B (Python) - 단계별로 풀어보기

육지핑핑이 2023. 3. 22. 01:27

Python3 코드

A, B = input().split()
print(int(A)+int(B))