public class NumberPuzzle
{
public static void main( String[] args )
{
for (int x = 1; x <= 9; x++)
{
for (int y = 0; y <= 9; y++)
{
System.out.println(x+""+y+ ", " +x+ "+" +y+ " = " +x+y);
}
}
}
}