Contents

[백준]14652 나는 행복합니다~

Contents

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

풀이:

잃어버린 관중석 번호에서 관중석의 가로길이를 나눈 몫과 나머지를 출력한다.

코드:

사용언어 : python

1
2
a,b,c=map(int,input().split())
print(c//b,c%b)