using System;
namespace InterfaceStudy.Examine
{
class Program
static void Main(string[] args)
I i;
i = new ClassB();
i.Print();
i = new ClassC();
}