Assignment #116 and Getting Individual Digits

Code

                        /// Name: Graham Pollock
                        /// Period: 5
                        /// Program Name: GID
                        /// File Name: GID.java
                        /// Date Finished: 04/25/2016/

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

Picture of the output

Assignment