class SomeClass(object):
    @classmethod
    def hello(cls):
        print("It's", cls.__name__)


SomeClass.hello()
