/// Name: Connor Siri /// Period: 7 /// Program Name: Digit /// File Name: Digit.java /// Date Finished: 3/2/2016 import java.util.Scanner; public class Digit { public static void main( String[] args ) throws Exception { Scanner kb = new Scanner (System.in); for ( int x=1; x < 10; x++ ) { for ( int y=1; y < 10; y++ ) { int z = x + y; System.out.println(x+""+y+", " + x +"+" + y + " = " +z); } } } }