# wiek = int(input("Podaj wiek: "))
# wzrost = int(input("Podaj wzrost: "))

# if wiek >= 12 and wzrost > 130 and wzrost <= 195:
#     print("Możesz")
# else:
#     print("Nie możesz")

w_mecze = int(input("Podaj wygrane mecze: "))
przegrane_mecze = int(input("Podaj przegrane mecze: "))
mvp = int(input("Podaj swoje MVP: "))

if w_mecze >= 10 and w_mecze > przegrane_mecze or mvp >= 7:
    print("Przechodzisz")
else:
    print("Nie przechodzisz")