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