# Allison Obourn
# CSC 110, Spring 2018
# Lecture 3

# This program prints four ASCII art figures
# an egg, a tea cup, a stop sign and a hat.

def main():
    egg()
    tea_cup()
    stop()
    hat()

# prints the bottom of a hexagon
def hexagon_bottom():
    print("\\        /")
    print(" \\______/")

# prints the top of a hexagon
def hexagon_top():
    print("  ______")
    print(" /      \\")
    print("/        \\")

# prints a stop sign    
def stop():
    hexagon_top()
    print("|  STOP  |")
    hexagon_bottom()
    print()

# prints a hat
def hat():
    hexagon_top()
    print("+--------+")

# prints an egg
def egg():
    hexagon_top()
    hexagon_bottom()
    print()

# prints a tea cup
def tea_cup():
    hexagon_bottom()
    print("+--------+")
    print()
    
main()
    
