1: //This function needs reference parameters because it is 2: //returning values to the caller. 3: void GetTwoIntValuesFromUser 4: ( 5: int& first, //out 6: int& second //out 7: );