Run ID:1443

提交时间:2023-09-30 16:54:06

#include<iostream> using namespace std; int main() { long long a,x,y; cin>>a>>x>>y; if(a>=x&&a<=y) { cout<<"yes"; } else { cout<<"no"; } return 0; }