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