인문학도 개발일지/1일1알고리즘
[알고리즘] 백준 1001 : A-B 파이썬 풀이
밤슬
2020. 3. 14. 21:29
풀이
A, B = map(int, input("").split(" "))
print(A-B)