Answer: (written in python)
a = int(input("How many snakes are there? (Type an integer.)"))
if a > 1:
print("You see", a ,"snakes! Run!")
elif a == 1:
print("You see 1 snake. That's not so bad.")
else:
print("You don't see any snakes. What a relief!")