Run ID:147517
提交时间:2026-02-05 22:15:04
#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; }