감자튀김 공장🍟

[백준/10869] 사칙연산 (with 파이썬) 본문

Algorithm/BOJ

[백준/10869] 사칙연산 (with 파이썬)

Potato potage 2022. 9. 25. 15:34
반응형

✔ 문제


✔ 풀이

a, b = map(int, input().split())
print(a+b)
print(a-b)
print(a*b)
print(a//b)
print(a%b)

✔ 후기

출력 4번째 줄에 // 를 써야하는데 / 로 썼었다..

반응형
Comments