Run ID:144848
提交时间:2026-01-24 19:13:37
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>=b&&a<=c) cout<<"yes"<<endl; else cout<<"no"<<endl; return 0; }