#include<iostream> using namespace std; int main(){ int A,B,C; cin>>A>>B>>C; if(A+B>C){ cout<<"Yes"; } else{ cout<<"No"; } }