#include <iostream>

class Base {
protected:
	void hello() { std::cout << "Hello\n"; }
};


class A: public Base {
    public:
        using Base::hello;
};

int main(){
    A a;
    a.hello();
    return 0;
}