Run ID:91586
提交时间:2024-09-22 10:42:46
a=input().split() b=int(a[0]) c=int(a[1]) if b%c >=1: print(b//c,b%c) else: print(b//c)