Run ID:126496
提交时间:2025-07-19 16:36:52
#include <bits/stdc++.h> using namespace std; int main() { int a, b, c; cin >> a >> b >> c; if (b <= a && a <= c) { cout << "yes"; } else { cout << "no"; } return 0; }