#include<iostream> using namespace std; int max(int x,int y){ if(x>y)return x; return y; } int main(){ int x,y; cin>>x>>y; cout<<max(x,y); }