Run ID:99531

提交时间:2024-11-30 11:25:26

#include<bits/stdc++.h> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; // if(x<=a<=y){ // cout<<"yes"; // } if(x<=a&&a<=y){ cout<<"yes"; } else{ cout<<"no"; } return 0; }