提交时间:2023-11-17 09:29:45

运行 ID: 402

def a(input_float): t = "{:.8f}".format(input_float) return t input_num = float(input()) print(a(input_num))