#include<iostream>
using namespace std;
class MaxNum
{
public:
inline int maximum_number(int no1, int no2)
{
return no1>no2?no1:no2;
}
};
int main()
{
int num1, num2;
MaxNum mn;
cout<<"\n Enter First Number : ";
cin>>num1;
cout<<"\n Enter Second Number : ";
cin>>num2;
cout<<"\n --------------------------------";
cout<<"\n First Number : "<<num1<<endl;
cout<<"\n Second Number : "<<num2<<endl;
cout<<"\n --------------------------------";
cout<<"\n Larger Number is : "<<mn.maximum_number(num1, num2)<<endl;
return 0;
}