/// Name: Holden Ganch
/// Period: 7
/// Program Name: sixtieth Program
/// File Name: EnterPIN.java
/// Date Finished: 10/5/2015
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);
}
}
}
}