#include <iostream>

using namespace std;

class Blob
{
    public:
    virtual void Echo() { cout << "timeless" << endl; }
};

class Splat: public Blob
{
    public:
    int age;
    Splat(int init): age(init) {}
    void Echo() { cout << age << endl; }
};

int main()
{
   Splat s(15);
   Blob* b;
   b = &s;
   b->Echo();
   return 0;
}
