diff --git a/secondCommit/multiplyTwoNumbers_StefaniaMagnusdottir.m b/secondCommit/multiplyTwoNumbers_StefaniaMagnusdottir.m
new file mode 100644
index 0000000000000000000000000000000000000000..21a655a07e1f2e1fb950517dd0e6b5c01d9a473b
--- /dev/null
+++ b/secondCommit/multiplyTwoNumbers_StefaniaMagnusdottir.m
@@ -0,0 +1,5 @@
+function c = multiplyTwoNumbers_StefaniaMagnusdottir(a, b)
+% multiplyTwoNumbers(a, b) returns the product of a and b
+
+c = a * b;
+end