import random print("Roll 1 -----------------") dice1 = random.randint(1, 6) dice2 = random.randint(1, 6) print("You roll", dice1, "and", dice2) print("your score", dice1 + dice2) Y/N == input("Roll again Y/N? ") if Y/N == Y import random print("You roll", dice1, "and", dice2) print("your score", dice1 + dice2) else if Y/N == N print("Game Over!")