/// Name: Kelsey Lieberman /// Period 5 /// Program Name: GettingIndividualDigits /// File Name: GettingIndividualDigits.java /// Date Finished: 2/11/2016 public class GettingIndividualDigits { public static void main(String[] args) { for (int x = 1; x < 10; x++) for (int z = 0; z < 10; z++) System.out.println(x + "" + z + ", " + x + "+" + z + " = " + (z+x)); } }