Perfect Square Check
Determine whether \(N\) is a perfect square.
Input
One line containing \(N\).
The input satisfies:
- \(1 \le N \le 10^18\)
Output
Print YES if \(N\) is a perfect square; otherwise, print NO.
Example
Input
60077989402881546
Output
NO
Comments