#D12950. Physical Experiments
Physical Experiments
Physical Experiments
Ignoring the air resistance, velocity of a freely falling object after seconds and its drop in seconds are represented by the following formulas:
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 floor of the building is defined by .
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>