#include<iostream> #include<cmath> using namespace std; int main(){ int c,j; cin>>c>>j; if(c>=j){ cout<<c<<endl; } else{ cout<<j<<endl; } }