백준풀이(Python)

[백준] 10869번 : 사칙연산 (Python) - 단계별로 풀어보기

육지핑핑이 2023. 3. 22. 01:37

Python3 코드

A, B = map(int , input().split()) 
print(A+B) 
print(A-B)
print(A*B)
print(A//B)
print(A%B)