Coding_test(백준)/Python
[Python]백준 1001번: 입출력과 사칙연산 단계 - A-B
byeolsub
2023. 4. 16. 23:33

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