SOURCE FILE: ex0803in.cpp


// Example 8.3. Program to read and print two integers 
   
#include <iostream.h>
   
int main(void)   
{   
   int in_int;      // I/O integer 
            
   cout << "Enter an integer: ";
   cin  >> in_int;
   cout << "The integer is " << in_int << ".\n\n";
      
   cout << "Enter another integer: ";
   cin  >> in_int;
   cout << "The integer is " << in_int << ".\n";

   return 0;
}