Run ID:145917

提交时间:2026-01-25 19:34:56

#include <iostream> using namespace std; int main() { int a, x, y; cin >> a >> x >> y; if (a >= x && a <= y) { // 判断是否在区间内 cout << "yes" << endl; } else { cout << "no" << endl; } return 0; }