print(250>42.01)
print(32<=21) # czy 32 jest większs lub równe 32? - False
print(55<=99)
print(33<=33)
print(100!=99) # czy 100 nie jest równe 99? - True
print(30==30) # czy 30 równa się 30? - True

a=30 # operator przypisania. (nie jest operatorem relacyjnym)
