#include <bits/stdc++.h> using namespace std; int main(){ int v, b; cin >> v >> b; if (v > b) { cout << "max=" << v; } else { cout << "max=" << b; } return 0; }