public class TutEtwas01
{
   public static void main(String[] args)
   {
      int a = Integer.parseInt(args[0]);
      int b = Integer.parseInt(args[1]);

      if((a % b) == 0)
      {
         System.out.println("pair has the required property");
      } 
      else
      {
         System.out.println("pair does not have the required property");
      }
   }
}
