Given a three-dimensional vector's components, find the magnitude of the vector.
Input Specification
The first line will contain three integers, , the components of the vector.
Output Specification
Output the magnitude of the vector, rounded to exactly three decimal places.
Sample Input
2 3 -1
Sample Output
3.742
Comments