n = int(raw_input("How many people are going to this party? "))
if n <= 0:
  print "That doesn't make any sense."
elif n == 1:
  print "That sounds sort of lonely."
elif n > 20:
  print "You're going to need a bigger house."

print "Have fun!"

