import math
def distance(n,m,l):
    d = math.sqrt(n**2+m**2+l**2)
    return d
x,y,z=input().split(",")
d=distance(float(x),float(y),float(z))
print("{:.2f}".format(d))

 

相关文章:

  • 2021-05-23
  • 2021-10-05
  • 2021-07-20
  • 2021-04-25
  • 2022-02-16
  • 2021-09-04
猜你喜欢
  • 2022-12-23
  • 2022-02-12
  • 2021-12-21
  • 2022-12-23
  • 2021-12-15
  • 2022-01-01
  • 2022-01-23
相关资源
相似解决方案