Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
92183 周楚航 11整数的除法 Python3 Accepted 43 MS 3764 KB 60 2024-09-28 14:52:20

Tests(10/10):


Code:

a=input().split() b=int(a[0]) c=int(a[1]) print(b//c,b%c)