#include<bits/stdc++.h> using namespace std; int main(){ int a,n; cin>>a>>n; if(a>n){ cout<<a<<endl; } else { cout<<n<<endl; } return 0; }