#include<iostream> using namespace std; int main(){ int m,n; cin>>m>>n; if(m<n){ cout<<"max="<<n<<endl; } else{ cout<<"max="<<m<<endl; } return 0; }