Run ID:91588

提交时间:2024-09-22 10:44:19

a=input().split() b=int(a[0]) c=int(a[1]) if b%c >=1: print(b//c,b%c) else: print(b//c,b%c)