#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; }