#include using namespace std; int main() { int n, m, x; cin >> n >> m >> x; int res = n - m; cout << (res < x ? "Yes" : "No") << endl; return 0; }