// 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=5;  // you must declare variables before you use them

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

  cin >> x;

  cout << "You entered " << x << endl;


  return 0;
}

