You are given a integer $a$. Determine whether or not $a$ is a square number.
### Input
- An integer $a$.
### Output
- Print `YES` if $a$ is a square number, `NO` otherwise.
### Constraints
- $(1 \le a \le 10^{18})$.
### Example
Input:
```
16
```
Output:
```
YES
```