Baekjoon/python
[백준 1001번] A - B
Yo-mi
2022. 4. 7. 11:38
a,b=input().split()
print(int(a)-int(b))
다시 한번 짚고 가자. input은 문자열을 입력 받는 것이다. (상황에 따라 변환 필요)