#include <iostream>
using namespace std;
int main(){
long int A,B,max;
cout<<"enter the first number:";
cin>>A;
cout<<"enter the second number:";
cin>>B;
max=A;
if (max<B)
max=B;
cout<<"Maximum="<<max<<endl;
}
Output:
enter the first number:3
enter the second number:8
Maximum=8
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer