#include <iostream> using namespace std; int main(){ int a,b,c; cin>>a>>b; if (b>a){ c=b; } else { c=a; } cout<<c<<endl; return 0; }