코딩 테스트 준비하기/백준 - 입출력
[10869] 사칙연산
젤리의it
2023. 6. 27. 20:09
A, B = map(int, input().split())
print(A+B)
print(A-B)
print(A*B)
print(A//B)
print(A%B)