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 ++;
}
}
}
}