← Back to List

1271번: 엄청난 부자2 ↗

Solutions

Python 3
57 B | 57 chars
n,m=list(map(int,input().split()))
print(n//m)
print(n%m)