#D12950. Physical Experiments

    ID: 10768 Type: Default 1000ms 134MiB

Physical Experiments

Physical Experiments

Ignoring the air resistance, velocity of a freely falling object vv after tt seconds and its drop yy in tt seconds are represented by the following formulas:

v=9.8t v = 9.8 t y=4.9t2 y = 4.9 t^2

A person is trying to drop down a glass ball and check whether it will crack. Your task is to write a program to help this experiment.

You are given the minimum velocity to crack the ball. Your program should print the lowest possible floor of a building to crack the ball. The height of the NN floor of the building is defined by 5×N55 \times N - 5.

Input

The input consists of multiple datasets. Each dataset, a line, consists of the minimum velocity v (0 < v < 200) to crack the ball. The value is given by a decimal fraction, with at most 4 digits after the decimal point. The input ends with EOF. The number of datasets is less than or equal to 50.

Output

For each dataset, print the lowest possible floor where the ball cracks.

Example

Input

25.4 25.4

Output

8 8

inputFormat

Input

The input consists of multiple datasets. Each dataset, a line, consists of the minimum velocity v (0 < v < 200) to crack the ball. The value is given by a decimal fraction, with at most 4 digits after the decimal point. The input ends with EOF. The number of datasets is less than or equal to 50.

outputFormat

Output

For each dataset, print the lowest possible floor where the ball cracks.

Example

Input

25.4 25.4

Output

8 8

样例

25.4
25.4
8

8

</p>