/**
 * 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];
 * 
 * Note: You may not use if statements
 **/
