using System;
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()
//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.
Printer ob = new Printer();
ob.Welcome();
ob.GoodDay();