#abc238a. A - Exponential or Quadratic

A - Exponential or Quadratic

Score : 100100 points

问题陈述

是否存在 2n>n22^n > n^2 的情况?

以上为通义千问 qwen-max 翻译,仅供参考。

Problem Statement

Does 2n>n22^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 2n>n22^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 2n>n22^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 2n>n22^n \gt n^2 does not hold. Thus, No should be printed.

Sample Input 3

623947744

Sample Output 3

Yes

update @ 2024/3/10 10:16:38