Assignemnt #116 and getting individual digits

Code

///name: Ben Borglin
///program name: Getting Individual Digits
///file name: gid.java
///period 6
///date finished: 4/26/16

public class gid
{
    public static void main(String[] args)
    {
    
        for( int a = 1; a < 10; a++)
        {
            for( int b=0; b<10; b++)
            {
                int c = a+b;
                
                System.out.println(a + "" + b + ", " + a + " + " + b + " = " + c );
            }
        }
    }
}
        
    

Picture of the output

Assignment 116