#python3题解#

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

唔,整除被渲染为注释了,sad