/*************************************************************************
* Input and Output to Console Example
*
*************************************************************************/
using System;
namespace MyProject.Examples
{
class ExampleOne
{
static void Main()
{
Console.Write("Please Enter number 1 ");
int x = int.Parse(Console.ReadLine());
Console.Write("Please Enter number 2 ");
int y = int.Parse(Console.ReadLine());
int z = x + y;
Console.Write("The Sum of {0} and {1} is {2}
", x, y,z);
Console.ReadKey();
}
}
}