import random def roll_dice(): return random.randint(1, 6) def main(): print("Welcome to the Dice Game!") score = 0 roll_number = 1 while True: print(f"\nRoll {roll_number} -----------------") dice1 = roll_dice() dice2 = roll_dice() print(f"You roll {dice1} and {dice2}") roll_sum = dice1 + dice2 score += roll_sum print(f"Your score is {score}") if dice1 == 1 and dice2 == 1: print("Snake eyes!!!") print("\nGame Over --------------") print(f"Your final score: {score}") break user_input = input("Roll again (y/n)? ").lower() if user_input != 'y': print("\nGame Over --------------") print(f"Your final score: {score}") break roll_number += 1 if __name__ == "__main__": main() start = 10000000000 end = 1000000000000000000000000000 for i in range(start, end + 1, 2): print(i)