#include int main(void) { long long N, M; scanf("%ld %ld", &N, &M); if (M >= N * (N + 1) / 2) printf("Yes\n"); else printf("No\n"); return 0; }