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