반응형
PROBLEM
- Link
Approach to the problem
-
Code
# 첫째 줄에 A와 B가 주어진다. (0 < A, B < 10)
# 첫째 줄에 A+B를 출력한다.
# 1 2
input_data = input().split(' ')
a = int(input_data[0])
b = int(input_data[1])
print(a+b)
End
-
반응형
'[SW][BEAKJOON] > [SW][BEAKJOON][입출력과 사칙연산]' 카테고리의 다른 글
[BeakJoon][입출력과 연산][10172][Python] (0) | 2022.03.22 |
---|---|
[BeakJoon][입출력과 연산][10430][Python] (0) | 2022.03.22 |
[BeakJoon][입출력과 연산][1008][Python] (0) | 2022.03.22 |
[BeakJoon][입출력과 연산][18108][Python] (0) | 2022.03.22 |
[BeakJoon][입출력과 연산][10998][Python] (0) | 2022.03.22 |