class SimpleTime1 {

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