Run ID:92314
提交时间:2024-09-28 20:28:20
a = input().split() b = int(a[0]) c = int(a[1]) if b%c > 0: print(b//c,b%c) else: print(b//c,"0")