# Homework 13, problem 3: Roll two dice. # # Roll two six-sided dice INDEPENDENTLY using random.randint. Print: # Die 1: # Die 2: # Total: # # Run with: python exercises/13/homework/03-roll-two-dice.py import random # Your code goes here: