Run ID:147424
提交时间:2026-02-04 22:56:12
#include<bits/stdc++.h> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(a>=y-x && a<=y){ cout<<"yes"; }else{ cout<<"no"; } return 0; }