0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 15:25:25 +00:00
OI-codes/problem/CF47A/CF47A.cpp
2020-10-08 20:33:40 +08:00

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;
}