Run ID:126461
提交时间:2025-07-19 15:25:51
#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; }