using System;
// Q1. Create a class Printer. Inside class Printer create a method Welcome that prints "Welcome to BrainChild".
//Create another Method GoodDay that prints "Have a nice day". Call both the methods in Main method.
public class Printer
{
public void WelCome()
Console.WriteLine("Welcome to BrainChild");
}
public void GoodDay()
Console.WriteLine("Have a nice day");
public class Program
public static void Main()
Printer WordLine = new Printer();
WordLine.WelCome();
WordLine.GoodDay();