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