Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created July 23, 2021 06:55
Show Gist options
  • Save amankharwal/ee9f4b827a77e5f7ecaf74a63eaa21e6 to your computer and use it in GitHub Desktop.
Save amankharwal/ee9f4b827a77e5f7ecaf74a63eaa21e6 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std;
int main(){
int x,y;
cout<<" Enter 1st Number : ";
cin>>x;
cout<<" Enter 2nd Number : ";
cin>>y;
if (x==y){
cout<<"Both are equal";
}
else if (x>y){
cout<<x<<" is greater than "<<y;
}
else{
cout<<y<<" is greater than "<<x;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment