class Person:
    def скажи_привіт(self):
        print('Привіт,ти хто?')

p = Person()
p.скажи_привіт()
