Perfect Square Check


Submit solution

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

Author:
Problem types

Determine whether \(n\) is a perfect square.

Input

One integer \(n\).

The input satisfies:

  • \(1 <= n <= 1000\)

Output

Print YES if \(n\) is a perfect square; otherwise print NO.

Example

Input
11
Output
NO

Comments

There are no comments at the moment.