#include<iostream> using namespace std; int main(){ int a,b,d=0; cin>>a>>b; if(a>=b){ d=a; }else{ d=b; } cout<<d; return 0; }