#include <iostream>
#include <string>
// say what standard-library names we use
using std::cin; using std::endl;
using std::cout; using std::string;
int main()
{
int first , second ;
cin >> first ;
cin >> second ;
if(first >> second)
cout << "first is bigger!";
else
{
if(second >> first)
cout << "second is bigger!";
else
cout << "equal!!!!!";
}
}
OMG ...Thank you ,
I made this mistake and didn't notice that for 1 hour !How stupid I was ....
I changed the >> on lines 13 and 17 .to >
now it works perfectly!
Should I delete this post now ?