Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91451 谭景年 06小数除法 Python3 Accepted 55 MS 3740 KB 83 2024-09-21 19:39:09

Tests(10/10):


Code:

s=input().split() b=float(s[1]) a=float(s[0]) c=a%b print('{:.2f}'.format(c))