#include<bits/stdc++.h> using namespace std; int max(int x, int y) { if(x>y)return x; return y; } int main() { int x,y; cin>>x>>y; cout<<max(x,y); }
666
thanks
666
thanks