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