import random

while True:
    eyes = random.randrange(1,7)
    if eyes == 6:
        print('hooray!')
        break
