// Program with data structure
class ProgramWithDS {

   // an auxcillary data structure
   static class SimpleTime1d {
      int hour, minute;
   }

   // main program entry
   public static void main (String [] args) {
      SimpleTime1d t = new SimpleTime1d ();
   }
  
}