a = 12.341
b = 2
c = round(a, b)
a = float(input())
print(round(a, 3))
b = float(input())
print(round(b, 4))
print(c)

2 条评论

  • 1