int thesenumbers[5]{6,12,5,9,15};
123456
int thearray[2]; cout << "enter two numbers" << endl; cin>> thearray[0] >> thearray[1]; cout<< thearray[0] << "+" << thearray[1] << "=" << thearray[0] + thearray[1] << endl;