diff --git a/module5_multiplication_game.py b/module5_multiplication_game.py
new file mode 100644
index 0000000000000000000000000000000000000000..57e9770ff50ec861bd674d784afebdd23f8a5d1f
--- /dev/null
+++ b/module5_multiplication_game.py
@@ -0,0 +1,19 @@
+print('Welcome to multiplication game!')
+print('(Empty to quit)')
+import random
+
+s = 'start'
+while not s == '':
+    a = random.randint(0, 9)
+    b = random.randint(0, 9)
+    s = input(f'{a}*{b}=')
+    if not s=='':
+        try:
+            p = int(s)
+            if p == a*b:
+                print('Good job!')
+            else:
+                print('Oh, no, try again.')
+        except:
+            print("I don't understand that.")
+        
\ No newline at end of file