////////////// ///////////// // Prog9.cpp // // Ed Smith // // Dr. England CS241, Fall2003 ////////////// ///////////// // // // bigUn driver for // // program 9 // ////////////// ///////////// #include "BigUn.h" #include #include using namespace std; int main (void){ // set up string and bigun variables to hold vales to be added together string temp1 = "", temp2 = ""; BigUn first, second; // set up bigun variable to hold sum of + BigUn sum; // prompt user for input cout << "\nEnter first number: "; cin >> temp1; first = temp1; cout << "\nEnter second number: "; cin >> temp2; second = temp2; // calculate the sum sum = temp1 + temp2; // print output to the screen cout << "\n\nThe sum of those two numbers is:\n" << sum.toString(); return 0; }