Run ID:137673
提交时间:2025-11-22 11:10:19
#include<bits/stdc++.h> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(y>=a) { if(x<=a) { cout<<"yes"<<endl; } else { cout<<"no"<<endl; } } else { cout<<"no"<<endl; } return 0; }