Python/VIT/sem-1/ex-05/roll-two-dice.py
import random
# Simulate the roll of the first die
die1 = random.randint(1, 6)
# Simulate the roll of the second die
die2 = random.randint(1, 6)
# Print the results
print("Die 1 rolled a", die1, "while die 2 rolled a", die2)