// File DDTest8.java
// Fourth reading exceeds the limit
public class DDTest8 {

   public static void main (String [] args) {
   
      DrugData limit = new DrugData(.2, .3, .2, 1.1, 1.1, .25, 0.7);
      
      DrugData athlete = new DrugData(0.1, 0.05, 0.099, 2.0, 0, 0, 0);
      
      if (athlete.examine(limit))
      
         System.out.println("examine results");
         
      else
      
         System.out.println("no concerns");
         
   }
}

