Problems
Perfect square
Perfect square
Positive integer n is given. If n is a perfect square of some positive integer m, then print m. Otherwise print "No".
Input data
One positive integer n.
Output data
Print the required answer.
Examples
Input example #1
25
Output example #1
5
Input example #2
27
Output example #2
No