mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 16:38:48 +00:00
18 lines
280 B
C++
18 lines
280 B
C++
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
int n;
|
|
cin >> n;
|
|
for (int i = 1; i <= n; i++) {
|
|
if ((i + 1) * i * 0.5 == n) {
|
|
cout << "YES" << endl;
|
|
goto end;
|
|
}
|
|
}
|
|
cout << "NO" << endl;
|
|
end:;
|
|
return 0;
|
|
}
|