#include int main() { long long int n, m; scanf("%lld %lld", &n, &m); if (m < n * (n + 1) / 2) printf("No\n"); else printf("Yes\n"); return 0; }