#include<iostream> using namespace std; int max(int x,int y){ return x>=y?x:y; } int main(){ int a,b; cin>>a>>b; cout<<max(a,b); return 0; }