power-girl0-0

[ 10869 ] 사칙연산 본문

백준 알고리즘/python

[ 10869 ] 사칙연산

power-girl0-0 2021. 2. 25. 01:58
728x90

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

'백준 알고리즘 > python' 카테고리의 다른 글

[ 2588 ] 곱셈  (0) 2021.02.25
[ 10430 ] 나머지  (0) 2021.02.25
[ 1008 ] A/B  (0) 2021.02.25
[ 10998 ] A x B  (0) 2021.02.25
[ 1001 ] A-B  (0) 2021.02.25
Comments