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