# The Rumplestiltskin program

done = False
while not done:
    name = input( "What's my name? " )
    if name == "Rumplestiltskin":
        done = True
        print( "Drat! You guessed it." )
    else:
        print( "WRONG!" )

        
