백준 1001 파이썬


1. 문제

1001

2. 설명

간단한 입출력 문제이다.

3. 풀이

파이썬의 기본 문법인 input과 print를 쓰면 된다.

4. 코드

a, b = map(int, input().split())

print(a - b)