//colin hinton //5th period //get.java //5/6/2016 class get { public static void main (String [] args) { int counter = 10; for (int x = 1; x < 10; x++) { for (int y = 0; y < 10; y++) { System.out.println(counter + ", " + x + "+" + y + " = " + (x + y)); counter ++; } } } }Picture of the output