//       CS210 - Algorithms and Data Structures I
//            Department of Computer Science
//       National University of Ireland, Maynooth
//
//           Solutions to Self-help Exercises
//                     Tom Naughton
//                    November 2000
//
//-------------------------------------------------------
//http://www.cs.may.ie/tnaughton/cs210/cs210selfhelp.html
//=======================================================
class ExerciseI2 {
  /* Prints the sum of two integers
  */
  public static void main(String args[]) {
    int a, b;
    a = 5;
    b = 6;
    System.out.println(a + b);
  }
}

