#!/usr/bin/python

import random

one = ["Snakes", "Dogs", "Zombies", "Leopards", "Robots", "Computers", 
"Dinosaurs"]
two = ["on a Plane", "on a Bicycle", "in a Mall", "on a Spaceship", 
"Right Behind You!", "in a Park", "in my Pants"]

print random.choice(one) + " " + random.choice(two)

