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