본문 바로가기
Coding_test(백준)/Python

[Python]백준 1000번: 입출력과 사칙연산 단계 - A+B

by byeolsub 2023. 4. 16.

a,b = map(int, input().split())
print(a+b)