Physics Experiment

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Yunee is taking a physics lab class. One day, after an experiment, Yunee noticed that some figures in the experiment result came out lower than expected. So Yunee decided to manipulate the result by rounding the values several times.

When rounding a number to the ii-th place, it is rounded down if the digit one place right to the ii-th place is less than 55. Otherwise, it is rounded up. For example, rounding 454454 to the nearest tens gives 450450. On the other hand, rounding 454454 to the nearest hundreds gives 500500.

By rounding 454454 to the nearest hundreds and then thousands, we get 4545001000454 \rightarrow 500 \rightarrow 1000. This is the maximum value we can get by rounding 454454 zero or more times.

Help Yunee maximize the value in the experiment result by rounding it zero or more times.

입력

The first line contains an integer NN representing the value in the experiment result (1N1015)(1\le N \le 10^{15}). Note that NN may exceed the 32-bit integer limit.

출력

Output the maximized value by rounding NN zero or more times. The output should not have leading zeros.