#include <iostream> using namespace std; int main() { int a=0,b=0; cin>>a>>b; a>b?a=a:a=b; cout<<a<<endl; system("pause"); return 0; // write your code here...... return 0; }