#include<iostream> using namespace std; int main(){ int sx,yw; cin>>sx>>yw; if(sx>yw){ cout<<sx<<endl; } else{ cout<<yw<<endl; } return 0; }