Monday, 1 February 2016

Comecocos

a=0
while a<1:
    print ('A number from 1 to 6')
    print ('')
    guess = int(input())

    if guess  == 1:
        print('Tidy up your bedroom')
        print ('')

    elif guess == 2:
        print('Help with the laundry')
        print ('')

    elif guess == 3:
        print('Call your best friend')
        print ('')
     

    elif guess == 4:
        print('Write a poem')
        print ('')

    elif guess == 5:
        print('Don´t think for 2 minutes')
        print ('')
       
    elif guess == 6:
        print('Dance crazily for 2 minutes')
        print ('')

    else: print ('That is not a valid number, you poo!!!!')