import random answer = "yes" total=0 while answer != "no": dice1 = random.randint(1,6) dice2 = random.randint(1,6) if dice1+dice2 !=2: total=total+dice1+dice2 print(total) answer = input("Do you want to play again? (yes/no)") else: print("snake eyes") answer="no"