Assignemnt #116 and Getting Individual Digits

Code

/// Name: David Shkolnikov
/// Period: 6
/// Program Name: Individual Digits
/// File Name: IndividualDigits.java
/// Date Finished: 5/5/2016

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

Picture of the output

Assignment 8