//to store integers 62 to 99 in variables and store the sum of these two in a variable name total


public class SumofTwoNum
{
	public static void main(String[]args)
	{
		int num1 = 62;
		int num2 = 99;
		int total;

		total = num1 + num2;

		System.out.println("The sum of 62 and 99 is " + total);

	}
}