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