/** * author: tomo0608 * created: 29.01.2021 21:28:13 **/ #pragma GCC optimize("Ofast") #include using namespace std; typedef long long ll; typedef long double ld; typedef pair pii; typedef pair pll; typedef vector vi; typedef vector vll; typedef vector vvi; typedef vector vvl; typedef vector vb; #define all(x) x.begin(),x.end() #define rep2(i, m, n) for (int i = (m); i < (n); ++i) #define rep(i, n) rep2(i, 0, n) #define drep2(i, m, n) for (int i = (m)-1; i >= (n); --i) #define drep(i, n) drep2(i, n, 0) #define unique(a) a.erase(unique(a.begin(),a.end()),a.end()) template using priority_queue_rev = priority_queue, greater >; template inline bool chmax(T &a, const T &b) { if (a inline bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } template istream &operator>>(istream &is, pair &p) { is >> p.first >> p.second; return is; } template ostream &operator<<(ostream &os, const pair &p) { os << '(' << p.first << ", " << p.second << ')'; return os; } template istream &operator>>(istream &is, vector &v) { for (auto &e : v) is >> e; return is; } template ostream &operator<<(ostream &os, const vector &v) { for (auto &e : v) os << e << ' '; return os; } template ostream& operator << (ostream& os, set& set_var) {os << "{"; for (auto itr = set_var.begin(); itr != set_var.end(); itr++) {os << *itr;++itr;if(itr != set_var.end()) os << ", ";itr--;}os << "}";return os;} template ostream &operator<<(ostream &os, map &map_var) {os << "{";for(auto itr = map_var.begin(); itr != map_var.end(); itr++) {os << *itr;itr++;if (itr != map_var.end()) os << ", ";itr--;}os << "}";return os;} template inline int count_between(vector &a, T l, T r) { return lower_bound(all(a), r) - lower_bound(all(a), l); } // [l, r) #define pb push_back #define eb emplace_back #define elif else if #define mp make_pair #define endl '\n' // Primality test class Prime { public: const int N; vector min_prime; vector primes; Prime(int size): N(size), min_prime(N+1){ rep(i,N+1)min_prime[i] = i; min_prime[0] = -1; min_prime[1] = -1; for(int i = 2;i<=N;i++){ if(min_prime[i]!=i)continue; primes.push_back(i); int tmp = 2*i; while(tmp <= N){ if(min_prime[tmp]==tmp)min_prime[tmp] = i; tmp += i; } } } bool check(int x){ return min_prime[x] == x;} }; template // int or long long T gcd(T x, T y){ if(x%y == 0)return y; return gcd(y, x%y); } template T gcd(vector a){ T res = a[0]; for(auto &x: a)res = gcd(res, x); return res; } void solve(){ vi a(3),b(3);cin >> a >> b; rep(i,3)rep(j,3){ swap(a[i],b[j]); bool c1 = false, c2 = false; if(a[0] < a[1] && a[2] < a[1] && a[0] != a[2])c1 = true; if(a[0] > a[1] && a[2] > a[1] && a[0] != a[2])c1 = true; if(b[0] < b[1] && b[2] < b[1] && b[0] != b[2])c2 = true; if(b[0] > b[1] && b[2] > b[1] && b[0] != b[2])c2 = true; if(c1 && c2){ cout << "Yes" << endl; return; } swap(a[i],b[j]); } cout << "No" << endl; return; } int main() { cin.tie(0); ios_base::sync_with_stdio(false); cout << setprecision(20); int codeforces = 1; //cin >> codeforces; while(codeforces--){ solve(); } return 0; }