#include using namespace std; int main() { cout << "This is the start of the program " << endl; int num1; int num2; int num3; cout << "Enter number 1: "; cin >> num1; cout << "Enter number 2: "; cin >> num2; cout << "Enter number 3: "; cin >> num3; cout << "The average is " << (num1 + num2 + num3) / 3 << endl; cout << "This is the end of the program " << endl; return 0; }