class SimpleTime0 {

   /*
     The representation of the abstract notion of "time of
     day" is choosen to be two integer values.
   */
  
   int hour;    // hours   0..23
   int minute;  // minutes 0..59
  
}