본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#11 백준 파이썬 [10869] 사칙연산

#11 [10869] 사칙연산

https://www.acmicpc.net/problem/10869


#11 [10869] Solution

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