// Input the time of an occasion
void 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 );
}