# A program to print the Fresh Prince of Bel-Air theme.

# This is a function to print the lyrics to my favorite song.
def rap():
   print("Now this is the story all about how")
   print("My life got flipped turned upside-down")

# A function for the "main" program.
def main():
   rap()                 # Call (run) the rap function.
   print()               # Print a blank line.
   rap()                 # Call the rap function again.

main()                   # Call main() to start the program.
