Using the following program as a guide, write a program reads in 2 scores in the main function.. Calls a function that will triple each number. In the function and the print the result in the main function. //**Defining and calling a function with variable paramters(in and out) //Passes 2 numbers into the function and passes the 2 numbers //back out doubled #include using namespace std; void dblit( int &, int & );//since this is in and out, we need & main() { int score,score2; cin >> score>> score2; dblit( score , score2);// Call the function, since we are // passing 2 numbers back in the list, we are // not returning a number back to the spot, so // the function call is a statement by itself cout << score << " " << score2 << endl; } void dblit( int & num , int & num2) //Need & to make them in and out { num = num * 2; num2 = num2 * 2; // no need for a return, since both number will // // go back in the list. Since we do not have a // // a return, we need void by the function name }