///Name: Ali Kurland
/// Period: 6
/// Program Name: Getting Individual Digits
/// File Name: Digits.java
/// Date Finished: 2/28/2016
public class Digits
{
public static void main( String[] args )
{
for ( int x=1; x<10; x++ )
for ( int y=0; y<10; y++ )
{
System.out.println( x + "" + y + ", " + x + "+" + y + " = " + ( x + y ) );
}
}
}