2025-09-06 18:16:39 +09:00

2 lines
70 B
Python

n, m = map(int, input().split())
print('\n'.join(map(str,[n//m,n%m])))