250 > 42.01 #250 jest większe niż 42.01 #prawda
490 <= 450 #490 jest 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)
wymagany_wzrost = 150
wzrost = int(input("Podaj swój wzrost")) 
mniejszy_wzrost = 215
print(wzrost > wymagany_wzrost and wzrost < mniejszy_wzrost )

print(not True)
print( not False)
print(not 50 == 50.001)
print(not 2 < 10)
print(not 4 > 10)
print(not(not 4 > 10))

print(True and True)
print(20 < 25 and 24 == 0) #False
print(4 != 4.0 and 2 <= 0) #False
print( 2 < 5 and 50 != 50.001) #True

#True
#False
#False



