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