//Program finds the maximum of two numbers
#include<iostream.h>
int main()
{
float a,b,max;
cout<<"Entertwo numbers\n";
cin>>a>>b;
max=(a>b)?a:b;
cout<<"The maximum of two numbers = "<<max;
return 0;
}