提交时间:2024-01-23 14:30:47

运行 ID: 37822

#include<bits/stdc++.h> using namespace std; int main() { int x1,y1,x2,y2; cin>>x1>>y1>>x2>>y2; if(x1<=x2 and y1<=y2){ cout<<"yes"; }else{ cout<<"no"; } return 0; }