// readInt.cc P. Conrad 02.08.06  for CISC171
// read an integer from the keyboard and print it out

#include <iostream> // we are doing normal keyboard i/o 
using namespace std; // we'll talk about this later

int main(void)
{
  int x,y; // declares two integers, x and y

  // prompt the user for an integer
  cout << "Please enter two integers: ";

  cin >> x >> y;  // DO NOT say cin >> x,y;  more on that in a sec!

  cout << "x = " << x << " y= " << y << endl;

  if ( x > y   )
    cout << "x is bigger " << endl;
  else
    cout << "y is bigger " << endl;

  return 0;
}

