//using system namespace
using System;
//Namespace declaration
namespace first
{
//Class declaration
class helloworld
{
//Main method
public static void Main()
{
//Statement to print output on console
Console.WriteLine("Hello World! Welcome to C#");
Console.WriteLine("Come One Come All");
}
}
}