#include using namespace std; using ll = long long; using ld = long double; const ld pi = 3.14159265358979; const int mod = 1000000007; bool f(int a , int b , int c , int x , int y , int z){ if(a == b || b == c || c == a){ return false; } if(x == y || y == z || z == x){ return false; } if(b < a && b < c && y < x && y < z){ return true; } if(b > a && b > c && y > x && y > z){ return true; } if(b < a && b < c && y > x && y > z){ return true; } if(b > a && b > c && y < x && y < z){ return true; } return false; } int main(){ vector a(3) , b(3); for(int i = 0; i < 3; i++){ cin >> a[i]; } for(int i = 0; i < 3; i++){ cin >> b[i]; } for(int i = 0 ; i < 3; i++){ for(int j = 0; j < 3; j++){ swap(a[i] , b[j]); if(f(a[0] , a[1] , a[2] , b[0] , b[1] , b[2]) == true){ cout << "Yes" << endl; exit(0); } swap(a[i] , b[j]); } } cout << "No" << endl; return 0; }