#D6830. Around Square

    ID: 5681 Type: Default 2000ms 268MiB

Around Square

Around Square

Find the largest square number not exceeding N. Here, a square number is an integer that can be represented as the square of an integer.

Constraints

  • 1 \leq N \leq 10^9
  • N is an integer.

Input

Input is given from Standard Input in the following format:

N

Output

Print the largest square number not exceeding N.

Examples

Input

10

Output

9

Input

81

Output

81

Input

271828182

Output

271821169

inputFormat

Input

Input is given from Standard Input in the following format:

N

outputFormat

Output

Print the largest square number not exceeding N.

Examples

Input

10

Output

9

Input

81

Output

81

Input

271828182

Output

271821169

样例

81
81