#abc238a. [abc238_a]Exponential or Quadratic

[abc238_a]Exponential or Quadratic

Problem Statement

Does 2ngtn22^n \\gt n^2 hold?

Constraints

  • nn is an integer between 11 and 10910^9 (inclusive).

Input

Input is given from Standard Input in the following format:

nn

Output

If 2ngtn22^n \\gt n^2, print Yes; otherwise, print No.


Sample Input 1

5

Sample Output 1

Yes

Since 25=32,52=252^5=32,\\ 5^2=25, we have 2ngtn22^n \\gt n^2, so Yes should be printed.


Sample Input 2

2

Sample Output 2

No

For n=2n=2, we have 2n=n2=222^n=n^2=2^2, so 2ngtn22^n \\gt n^2 does not hold. Thus, No should be printed.


Sample Input 3

623947744

Sample Output 3

Yes