Cometin'

BOJ-1271 - Python

2020-08-16 at Algorithm category

숫자 n과 m을 입력받은 후 나눈 값과 나머지를 출력하는 문제

n, m = map(int, input().split())
print(n//m)
print(n%m)

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.