Accept a real number x as input. Print the greatest integer less than or equal to x on the first line, followed by the smallest integer greater than or equal to x on the second line. These are the floor and the ceiling of x.
Input
A single line containing a real number.
Output
Two lines. The first line is the floor of x, the second line is its ceiling.
Example
Input:
3.3
Output:
3
4
Write a complete program: read the input with input() and print the result with print().
Input
3.3
Output
3
4