#include<bits/stdc++.h>
using namespace std;
class rectangle{
	private:
		int length,width;
	public:
		void set(int x,int y){
			length=x;
			width=y;
		}
		int getlength(){
			return length;
		}
		int getwidth(){
			return width;
		}
		int area(){
			return length*width;
		}
        int max(){
            if(length>width){
                return length;
            }
            else{
                return width;
            }
        }
        int min(){
            if(length<width){
                return length;
            }
            else{
                return width;
            }
        }
        void cancover(rectangle a){
            if(this->max()>=a.max()&&this->min()>=a.min()){
                cout<<"yes";
            }
            else{
                cout<<"no";
            }
        }
		// write your code here......
};
int main(){
	int l1,w1,l2,w2;
	cin>>l1>>w1>>l2>>w2;
	rectangle a,b;
	a.set(l1,w1);
	b.set(l2,w2);
	a.cancover(b);
	return 0;
}