백준 1001번 A-B 파이썬
2022.03.07 15:42
백준 1001번 A-B 파이썬 코드이다.
a, b = map(int, input().split())
print(a - b)
A와 B를 input으로 받아서 출력했다.