Operators Statements C++ Tutorial

#include 
using namespace std;
int main(){
   int x, y;
   cout << "Enter two integers: ";
   cin >> x >> y;
   cout << x << ( x == y ? " is" : " is not" ) 
        << " equal to " << y << endl;
   return 0;
}