# # print(12 15) # Fałsz # ==, <, !=, <=
# # print(5 15000) # Prawda # ==, >, >=, <=
# # print(120 120) # Fałsz # ==, >=, !=, <=

# # print(60 15) # Fałsz # ==, <, !=, >=
# # print(25.3421 25.3421) # Prawda # ==, <, !=, <=


# print("Wejście na rollercoaster jest od 150 cm wzrostu")
# x = input("Podaj swój wzrost")
# result = int(x) > 150 and int(x) < 210

# if result:
#     print("Możesz wejść")
# else:
#     print("Nie możesz wejść")


#uzyj and, or lub not żeby wynik był taki sam

# print(True, 25 < 140 or 10 == 10)
# print(True, 100 >= 1 2 > 10)
# print(False, 25 < 14 10 != 10)
# print(False, -1 < 3 2 < 9 10 == 15)
# print(True, 20.05 < 21 < 10 -10 < 20 < 150 <= 150)
# print(False, 1 < 10 2 < 15 -50 == 42)
# print(True, 2 == 10)


# not (1 == 1)