#include using namespace std; int main() { unsigned long long int n,k,t,r,l; cin>>n>>k>>t; l=(t-k)+(t+k); if(l==n) cout<<"Yes"; else cout<<"No"; }