/******************************************************************************
Online C# Compiler.
Code, Compile, Run and Debug C# program online.
Write your code in this editor and press "Run" button to execute it.
*******************************************************************************/
using System;
class HelloWorld {
static void Main() {
Console.Write("Please enter a number:");
int n2 = int.Parse(Console.ReadLine());
Console.Write("Please enter a number:");
int n3 = int.Parse(Console.ReadLine());
int total = n2 + n3;
Console.WriteLine("total={0}", total);
Console.WriteLine("Hello 10-1");
}
}