using System;
public class Printer
{
//Q2. Create a class Printer. Inside class Printer create a method that takes one string input name that prints "Welcome George" where George is name entered by user. Call both the methods in Main method.
public void methodName()
Console.Write("Welcome");
}
public void methodName1()
Console.ReadLine();
public class Program
public static void Main()
Printer myObj = new Printer();
myObj.methodName();
myObj.methodName1();