# Arup Guha
# 2/10/2024
# Solution to Junior Knights Random Numbers Homework Problem A

import random

def main():

    # Generate and print first die.
    d1 = random.randint(1,20)
    print("The first die shows ",d1,".", sep = "")

    # Generate and print second die.
    d2 = random.randint(1,20)
    print("The second die shows ",d2,".", sep = "")

    # Calculate and print total.
    total = d1 + d2
    print("The total is ", total, ".", sep = "")

# Run it!
main()
