// X119Sum5.java // Andrew Hoffmann

import java.util.Scanner;

public class X119Sum5
{
	public static void main(String[] args)
		{
		int first, second, total=(first+second);
                 // Create a scanner.            
                 Scanner keyboard;				
                 keyboard=  new Scanner( System.in );
                 //get first number
                 System.out.println("Please enter the first number     ");
                 first=  keyboard.nextInt();
                 //get second number
                 System.out.println("Please enter the second number    ");
                 second=  keyboard.nextInt();
                 // declared numbers and added together
	         System.out.println("The total is " + total);
		}
}


