Before:

// Input the time of an occasion
int inputTime( string occasion, int & hour, int & min, int sec )
{
   // Enter the hour
   hour = inputHour( occasion );

   // Enter the min
   min = inputMinute( occasion );

   // Enter the second
   sec = inputSecond( occasion );

   // return the seconds
   return sec;
}