[백준] 1001번 : A-B (Python) - 단계별로 풀어보기 Python3 코드 A, B = input().split() print(int(A)-int(B)) 백준 2023.03.22
[백준] 1000번 : A+B (Python) - 단계별로 풀어보기 Python3 코드 A, B = input().split() print(int(A)+int(B)) 백준 2023.03.22