본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#3 백준 파이썬 [1001] A-B

#3 [1001] A-B

https://www.acmicpc.net/problem/1001




#3 [1001] Solution

a,b = list(map(int, input().split()))
print(a-b)