Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91028 乔仲熠 04保留两位小数 Python3 Accepted 40 MS 3744 KB 83 2024-09-21 10:54:33

Tests(10/10):


Code:

e=input().split() i=float(e[0]) b=float(e[1]) c='{:.2f}'.format(i/b) print(c)