import std.stdio;
import inheritance;

void main()
{
    auto b = new B(5, 10);
    writeln(b.varProd());
    writeln(b.varSum());
}

