#D3186. Water Bottle

    ID: 2652 Type: Default 2000ms 1073MiB

Water Bottle

Water Bottle

Takahashi has a water bottle with the shape of a rectangular prism whose base is a square of side a~\mathrm{cm} and whose height is b~\mathrm{cm}. (The thickness of the bottle can be ignored.)

We will pour x~\mathrm{cm}^3 of water into the bottle, and gradually tilt the bottle around one of the sides of the base.

When will the water be spilled? More formally, find the maximum angle in which we can tilt the bottle without spilling any water.

Constraints

  • All values in input are integers.
  • 1 \leq a \leq 100
  • 1 \leq b \leq 100
  • 1 \leq x \leq a^2b

Input

Input is given from Standard Input in the following format:

a b x

Output

Print the maximum angle in which we can tilt the bottle without spilling any water, in degrees. Your output will be judged as correct when the absolute or relative error from the judge's output is at most 10^{-6}.

Examples

Input

2 2 4

Output

45.0000000000

Input

12 21 10

Output

89.7834636934

Input

3 1 8

Output

4.2363947991

inputFormat

input are integers.

  • 1 \leq a \leq 100
  • 1 \leq b \leq 100
  • 1 \leq x \leq a^2b

Input

Input is given from Standard Input in the following format:

a b x

outputFormat

Output

Print the maximum angle in which we can tilt the bottle without spilling any water, in degrees. Your output will be judged as correct when the absolute or relative error from the judge's output is at most 10^{-6}.

Examples

Input

2 2 4

Output

45.0000000000

Input

12 21 10

Output

89.7834636934

Input

3 1 8

Output

4.2363947991

样例

2 2 4
45.0000000000