# Allison Obourn
# CSC 110, Spring 2018
# Lecture 2

# This program prints out a welcome message

def hello():
    print("hello world")
    print()
    print('this "is" csc 110')
    print("The raven's favorite phrase is\n, \"Nevermore\"")

def main():
    hello()
    hello()
    hello()

main()
