Run ID:92620
提交时间:2024-10-05 19:51:49
s=input().split() a=float(s[0]) b=float(s[1]) if a%b=0: print(a/b) else: print(a//b) print(a%b)