Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91784 徐梓涵 06整数除法 Python3 Accepted 40 MS 3740 KB 93 2024-09-22 15:02:03

Tests(10/10):


Code:

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