Coding_test(백준)/Python
[Python]백준 1000번: 입출력과 사칙연산 단계 - A+B
byeolsub
2023. 4. 16. 23:30

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