#include using namespace std; #define REP(i,n) for(int i=0; i #define VLL vector #define VVI vector> #define VVLL vector> #define VC vector #define VS vector #define VVC vector> #define fore(i,a) for(auto &i:a) typedef long long ll; typedef pair P; template bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } const int INF = 2147483647; const ll INFL = 9223372036854775807; const ll mod = 1000000007; int main() { int a, b, c, d, e, f; scanf("%d.%d.%d", &a, &b, &c); scanf("%d.%d.%d", &d, &e, &f); if (a > d) { cout << "YES" << endl; return 0; } else if (d > a) { cout << "NO" << endl; return 0; } if (b > e) { cout << "YES" << endl; return 0; } else if (e > b) { cout << "NO" << endl; return 0; } if (c > f) { cout << "YES" << endl; return 0; } else if (f > c) { cout << "NO" << endl; return 0; } return 0; }