/**
 * Write a program called DivisibleByEleven.java that reads in two command line arguments
 * and prints true if both are divible by 11 and false otherwise.
 * use:
 * String arg1 = args[0];
 * String arg2 = args[1];
 **/

public class DivisibleByEleven {
      public static void main(String[] args) {
        int X = Integer.parseInt(args[0]);
        int Y = Integer.parseInt(args[1]);
 
        boolean isDivisible = (X % 11 == 0) && (Y % 11 == 0);

        System.out.println(isDivisible);
    }
}
