Run ID:145656
提交时间:2026-01-25 17:45:07
#include<iostream> using namespace std; int main(){ int a,x,y; cin>>a>>x>>y; for(int i = x;i <= y;i++){ if(i == a){ cout<<"yes"; }else{ cout<<"no"; } } return 0; }