Perfect Square Check


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 256M

Author:
Problem types

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

There are no comments at the moment.