116

Code

    ///Name: Joshua Bautista
    ///Period: 6
    ///Date: 6/4/16
    
    public class GD
    {
        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 1