#include <iostream>
using std::cin;
using std::cout;
using std::endl;
#define NUMBER_OF_NUMBERS 3
int main()
{
int number[NUMBER_OF_NUMBERS];
// Take input.
cout << "Please enter three numbers, one at a time." << endl;
for (int i = 0; i < NUMBER_OF_NUMBERS; i++)
{
cin >> number[i];
// The processing of each number happens here.
number[i]++;
}
// Clear the screen.
system("CLS");
// Give output.
cout << "The processed numbers are the following." << endl;
for (int i = 0; i < NUMBER_OF_NUMBERS; i++)
cout << number[i] << endl;
return 0;
}