#include<bits/stdc++.h>

using namespace std;

int main(){
    string a, b;
    getline(cin, a);
    getline(cin, b);
    if(a.size() > b.size()) cout << a;
    if(a.size() < b.size()) cout << b;
    if(a.size() == b.size()) cout << b;
}
