diff --git a/Summer-Time-W-Jeff/challenge3.py b/Summer-Time-W-Jeff/challenge3.py new file mode 100644 index 0000000..7f88d88 --- /dev/null +++ b/Summer-Time-W-Jeff/challenge3.py @@ -0,0 +1,7 @@ +from random import randint + + +num1 = randint(1, 10) +num2 = randint(1, 10) +question = "What is " + str(num1) + " times " + str(num2) + "? " +answer = int(input(question))