250 > 42.01 #250 jest większe niż 42.01 #prawda
490 <= 450 #490 jest mniejsze lub mniejsze lub równe od 450 #Fałsz
24 == 24 #24 jest równe 24 #Prawda
40 != 23 #40 jest różne od 23 #Prawda
40 < 40 #40 jest mniejsze od 40 #Fałsz
40 <= 40 #40 jest mniejsze lub równe od 40 #Prawda

print(12 > 15)
print(5 < 15000)
print(120 > 120)
print(60 < 15)
print(25.3421 == 25.3421)

wzrost_minimalny = 150
wzrost = int(input("Podaj swój zwrost"))
wzrost_maksymalny = 215
print (wzrost > wzrost_minimalny and wzrost < wzrost_maksymalny)


(not True)
(not False)
print(not 50 == 50.001)
print(not 2 < 10)
print(not 4 > 10)
print(not(not 4 > 10))

print(True and True)#True
print(True and False)#False

print(20 < 25 and 24 == 0) #False
print(4 != 4.0 and 2 <= 0) #False
print(2 < 5 and 50 != 50.001) #True

print(20 < 25 or 24 == 0) #True
print(4 != 4.0 or 2<= 0) #False
print(2 < 5 and 50 != 50.001) #True


