#include #include using namespace std; int main(){ string a,b; cin >> a >> b; if(a.size()==b.size()){ for(int i=0;ib[i]){ cout << a << endl; return 0; }else if(b[i]>a[i]){ cout << b << endl; return 0; } } } int x=atoi(a.c_str()); int y=atoi(b.c_str()); if(x>y) cout << a << endl; else cout << b << endl; }