#T57. 最大数max(x,y,z)

最大数max(x,y,z)

Description

Given: $m=\\frac{\\max(a,b,c)}{\\max(a+b,b,c) × \\max(a,b,b+c)}$. Input a,b,ca, b, c and compute mm. Implement the function to find the maximum of three numbers max(x,y,z)max(x, y, z) as both a function and a procedure.

Input Format

Input a,b,ca, b, c.

Output Format

Compute mm, rounded to three decimal places.

1 2 3

 0.200