# Arup Guha
# 9/8/2020
# Simulation of a single risk battle 1 army vs 1 army

import random

# Have both sides roll one die.
attack = random.randint(1, 6)
defend = random.randint(1, 6)

# Attacker wins.
if attack > defend:
    print("The attacker won the battle",attack,"to",defend)

# Otherwise, the defender wins.
else:
    print("The defender won the battle",defend,"to",attack)
