#B4001. Cube Number Check

    ID: 11658 Type: Default 1000ms 256MiB

Cube Number Check

Cube Number Check

Given a positive integer n, determine if n is a cube number. A positive integer n is a cube number if and only if there exists a positive integer x such that $$x^3 = n$$.

inputFormat

The input contains a single positive integer n.

outputFormat

Output "YES" if n is a cube number, otherwise output "NO".

sample

1
YES