#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)
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#13 백준 파이썬 [2558] A+B-2 (0) | 2017.10.01 |
---|---|
#12 백준 파이썬 [10430] 나머지 (0) | 2017.10.01 |
#10 백준 파이썬 [1008] A/B (0) | 2017.10.01 |
#9 백준 파이썬 [10998] A*B (0) | 2017.10.01 |
#8 백준 파이썬 [11719] 그대로 출력하기 2 (0) | 2017.10.01 |