Run ID:1447
提交时间:2023-09-30 16:57:30
#include<iostream> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; if(a>=x&&a<=y){ cout<<"yes"<<endl; } else{ cout<<"no"<<endl; } return 0; }