Project: Fix the Errors

The program below contains three mistakes and won’t run as it is. Spot and fix the errors to run the program successfully:

Project: Fix the Errors

The program below contains three mistakes and won’t run as it is. Spot and fix the errors to run the program successfully:

C++
#include <iostream>
using namespace std;
int mian() {
int age = 19;
cout << "You are " << age << " years old." << endl
cout << "Next year you'll be " << nextYear << endl;
return 0;
}