// CSC108 Tutorial 1 Example
// Name:  Iam Me         Student ID: 555555555
// Tutor: Andria Hunter  Prof: Steve Bellantoni
//
// Program Description: This program adds two numbers together
//     and prints out the result.

import java.io.*;

class AddUp {

   // Main method to add numbers and display result.

   public static void main (String[] args) throws IOException {

      // Declare stdin so data can be read from input.
      DataInputStream stdin = new DataInputStream (System.in);

      int first = 5;      // Store the first number
      int second = 13;    // Store the second number

      int sum = first = second;    // Store the sum

      // Display the sum with an output label
      System.out.println ("Add up result is " + sum + ".");
   }
}

