You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
487 B
31 lines
487 B
|
|
people = 20
|
|
cats = 30
|
|
dogs = 15
|
|
|
|
|
|
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!")
|
|
|
|
|
|
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.")
|
|
|
|
|