'''
Created on Dec 12, 2016

@author: bassim
'''
import turtle 
import random            
wn = turtle.Screen()
feeling = ['cool','awesome','yaay!']
def heart(n):
        n.begin_fill()
        n.color('red')                                    
        n.left(45)
        n.forward(90)
        n.circle(45,180)
        n.right(90)
        n.circle(45,180)
        n.forward(90)
        n.end_fill()
def draw():
    n = turtle.Turtle()                          
    heart(n)
    
if __name__ == '__main__':
    print "Do you want to know how CS101 makes me feel?"
    ch = raw_input()
    if ch=='yes':
        print(random.choice(feeling))
        draw()  
        wn.exitonclick()
    elif ch=='no':
        print "Salty"