eolymp
bolt
Try our new interface for solving problems
Problems

Crossed Ladders

Crossed Ladders

Time limit 1 second
Memory limit 122 MiB

A narrow street is lined with tall buildings. An x foot long ladder is rested at the base of the building on the right side of the street and leans on the building on the left side. An y foot long ladder is rested at the base of the building on the left side of the street and leans on the building on the right side. The point where the two ladders cross is exactly c feet from the ground. How wide is the street?

prb1506

Input data

Each line contains three positive real numbers giving the values of x, y and c.

Output data

For each test case print one line with a real number giving the width of the street in feet, with three digits after the decimal point.

Examples

Input example #1
30 40 10
12.619429 8.163332 3
10 10 3
10 10 1
Output example #1
26.033
7.000
8.000
9.798