Run ID:133892
提交时间:2025-10-24 17:33:56
#include <iostream> using namespace std; int main(){ int a,x,y; cin>>a >>x >>y; if( a>y ) { cout<<"no"; } else if( a<x ) { cout<<"no"; } else { cout<<"yes"; } return 0; }