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번째 줄에 // 를 써야하는데 / 로 썼었다..
반응형