Round

You are given a floating point number x, write a static method round(double x) that rounds this floating point number to the nearest integer Hint: You can use casting to convert a double to integer.

Example 1

Input

5.5

Output

6

Example 2

Input

5.2

Output

5

Example 3

Input

3.7

Output

4

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.