#include<iostream> using namespace std; void max(int a,int b){ if(a>b){ cout<<a; }else{ cout<<b; } } int main(){ int c,d; cin>>c>>d; max(c,d); }