// readInt.cc P. Conrad 02.08.06  for CISC181
// 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 ;  // 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;

  int y;

  cout << "Please enter another integer: " << endl;
  
  cin >> y;

  cout << "You entered " << y << endl;

  return 0;
}

