CF47A.Triangular numbers

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Triangular numbers

A triangular number is the number of dots in an equilateral triangle uniformly filled with dots. For example, three dots can be arranged in a triangle; thus three is a triangular number. The n-th triangular number is the number of dots in a triangle with n dots on a side. . You can learn more about these numbers from Wikipedia (http://en.wikipedia.org/wiki/Triangular\_number).

Your task is to find out if a given integer is a triangular number.

Input

The first line contains the single number n (1 ≤ n ≤ 500) — the given integer.

Output

If the given integer is a triangular number output YES, otherwise output NO.

Samples

1
YES
2
NO
3
YES

在线编程 IDE

建议全屏模式获得最佳体验