# age = int(input("Podaj swój wiek "))

# if age >= 18:
#     print("Jesteś pełnoetni")

import sys 



class Human:
    lastEaten = []
    
    def __init__(self, age, lastEaten):
        self.age = age
        self.lastEaten = lastEaten

    def check_degree(self):
        pass

    def check_food(self):
        
        for i in self.lastEaten:
            if i == "apple":
                print("masz kłopot!")

boczek = Human(18, ["banana", "apple"])

boczek.check_food()