002 Input and Output To Console Example
002 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());
int z = x + y;