#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; long long MOD = 1000000007; vector split(const string &str, char sep) { vector v; // 分割結果を格納するベクター auto first = str.begin(); // テキストの最初を指すイテレータ while( first != str.end() ) { // テキストが残っている間ループ auto last = first; // 分割文字列末尾へのイテレータ while( last != str.end() && *last != sep ) // 末尾 or セパレータ文字まで進める ++last; v.push_back(string(first, last)); // 分割文字を出力 if( last != str.end() ) ++last; first = last; // 次の処理のためにイテレータを設定 } return v; } int main() { string S1,S2; cin >> S1 >> S2; vector VS1, VS2; VS1 = split( S1, '.' ); VS2 = split( S2, '.' ); bool is_new = false; for ( int i = 0; i < 3; i++ ) { if ( VS2[i] > VS1[i] ) { is_new = true; break; } if ( VS2[i] < VS1[i] ) { is_new = false; break; } } cout << ( is_new ? "NO" : "YES" ) << endl; return 0; }