#include using namespace std; int main() { int N,M; cin >> N >> M; if ((N*(N+1))/2 > M ) { cout << "No" << endl; } else { cout << "Yes" << endl; } }