# Arup Guha
# 9/3/2020
# Use of Random Class

import random

# Simulate two die rolls.
die1 = random.randint(1, 6)
die2 = die1

# Add them up.
total = die1+die2

# Print total.
print("You rolled",die1,"and",die2,"for a total of",total)
