#include<iostream> #include<math> using namespace std; int n,m; int main() { cin>>n>>m; cout<<max(n,m); return 0; }