35 lines
546 B
Python
35 lines
546 B
Python
people = 21
|
|
cats = 33
|
|
dogs = 14
|
|
|
|
|
|
if people < cats:
|
|
print("Too many cats! The world is doomed!")
|
|
|
|
if people > cats:
|
|
print("Not many cats! The world is saved!")
|
|
|
|
if people < dogs:
|
|
print("The world is drooled on!")
|
|
|
|
if people > dogs:
|
|
print("The world is dry!")
|
|
|
|
if people != dogs:
|
|
print("People are not dogs.")
|
|
|
|
|
|
dogs += 5
|
|
|
|
|
|
if people >= dogs:
|
|
print("People are greater than or equal to dogs.")
|
|
|
|
|
|
if people <= dogs:
|
|
print("People are less than or equal to dogs.")
|
|
|
|
|
|
if people == dogs:
|
|
print("People are dogs.")
|
|
|