Run ID:92624
提交时间:2024-10-05 19:57:06
s=input().split() a=int(s[0]) b=int(s[1]) if a%b==0: print(a//b,0) else: print(a//b,a%b)