// Program 1: OnePlusOne.C
// (c) Burt Rosenberg 1996
// This program introduces the integer variable

#include<iostream.h>;

void main()
{
    // Create two integer objects.
    int one ;
    int two ;

    // Set their values by assignment and arithemtic calculation.
    one = 1 ;
    two = one + one ;

    // Print the result.
    cout << one << " plus " << one << " equals " << two << endl ;
}
