Compute the length of the hypotenuse $ c $ of a right-angled triangle given the lengths of the two other sides $ a $ and $ b $.

background Layer 1 a b c

Input

The first and second lines of input contain integers $ a $ and $ b $ respectively. ($1 \le a, b \le 10000 $)

Output

Output $ c $ correct to 3 decimal places.

Sample Test Cases

Input Output
3
4
5.000
Click to copy.

Scoring: Per Case
Authored by s16f22