#include<bits/stdc++.h> using namespace std; int main(){ int a,s; cin>>a>>s; if(a < s) { cout<<s; }else{ cout<<a; } return 0; }