Run ID:131952
提交时间:2025-10-02 10:09:45
a,b = input().split() a = int(a) b = int(b) if a % b == 0: print(a // b) else: print(a// b,a % b)