# Authors:
# Date: 
# Practicum 2, Problem 2

""" This program is a math quiz program that can tell the user whether their
answer is correct or not. As in POTD 2, the program takes two command line
arguments, both integers that the user is asked to multiply. The program then
prompts the user for an answer, and responds with "Your answer is True" if
the answer was correct, or Your answer is False", if the answer was incorrect.

Example runs:
>>> %Run p2.py 9 2
What is 9 * 2?
10
Your answer is False
>>> %Run p2.py 9 2
What is 9 * 2?
18
Your answer is True
>>> %Run p2.py 6 4
What is 6 * 4?
24
Your answer is True
"""

