/* Instructions
* Provide missing code so that the program output is: "Hello, I'm B"
*/
using System;
public class Program
{
static public void Main(string[] args)
A obj = new B();
obj.Hello();
}