eolymp
bolt
Try our new interface for solving problems
Problems

Inside the interval

published at 1/5/24, 5:10:54 pm

ay bleee

published at 4/24/24, 8:51:55 pm

include<iostream>

include<bits/stdc++.h>

using namespace std; int main(){ long long x,a,b; cin>>x>>a>>b; if(x>=a&&x<=b) cout<<"YES"; else{ cout<<"NO"; }

}