// L-6 MCS 360 Fri 3 Sep 2010 : test4zero.cpp

/* Illustration of misspelling the equality test. */

#include <iostream>

using namespace std;

int main()
{
   int n;

   cout << "Enter a number : ";
   cin >> n;

   cout << "your number " << n;
   if(n = 0)
      cout << " is zero" << endl;
   else
      cout << " is nonzero" << endl;

   return 0;
}

