Run ID:126457

提交时间:2025-07-19 15:23:01

#include<bits/stdc++.h> using namespace std; int main() { int a, x, y; cin >> a >> x >> y; if (x <= y) { cout << "yes"; } if (x > y) { cout << "No"; } return 0; }