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