#include <iostream>
#include <conio.h>
usingnamespace std;
int main(){
double first = 0; // Variables are locally declared
double second = 0;
cout << "Enter the first number" << endl;
cin >> first;
cout << "Enter the second number" << endl;
cin >> second;
if(first > second){
cout << "First number is greater than the second number\n" << endl;
cout << first <<" > " << second << endl;
}else{
cout << "Second number is greater than the first number\n"<< endl;
cout << second << " > " << first << endl;
}
getch();
return 0;
}