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