// Classes.cpp : Defines the entry point for the console application.
//
#include <stdafx.h>
#include <iostream>
#include <string>
usingnamespace std;
int main()
{
int firstNumber;
int secondNumber;
int thirdNumber;
cout << "enter first number" << endl;
cin >> firstNumber;
cout << "Enter Second Number" << endl;
cin << secondNumber;
cout << "Enter the final number";
cin << thirdNumber;
cout << firstNumber << " was the first number you entered." << endl;
cout << secondNumber << " was the second number you entered" << endl;
cout << thirdNumber << " was the third number you entered\n";
registerint total = firstNumber + secondNumber + thirdNumber;
cout << "The Value Of Those Numbers Respectively is : " << total << endl;
system("PAUSE");
return 0;
}