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