#abc077b. [abc077_b]Around Square
[abc077_b]Around Square
Problem Statement
Find the largest square number not exceeding . Here, a square number is an integer that can be represented as the square of an integer.
Constraints
- is an integer.
Input
Input is given from Standard Input in the following format:
Output
Print the largest square number not exceeding .
Sample Input 1
10
Sample Output 1
9
is not square, but is. Thus, we print .
Sample Input 2
81
Sample Output 2
81
Sample Input 3
271828182
Sample Output 3
271821169