Baekjoon 문제 풀기 (1001번 : A-B)Python
1001번 : A-B
1. 1000번과 동일하게!
input().split() 활용하기 map() 활용하기
2. 제출 코드
a, b = map(int, input().split())
print(a - b)
3. 공부할 것
1000번과 동일한 문제. 연산만 바꾸기.
input().split() 활용하기 map() 활용하기
a, b = map(int, input().split())
print(a - b)
1000번과 동일한 문제. 연산만 바꾸기.
댓글남기기