diff --git a/firstCommit/addTwoNumbers_Lemmer.m b/firstCommit/addTwoNumbers_Lemmer.m
new file mode 100644
index 0000000000000000000000000000000000000000..3ad3eb827599f46b212ddb35b3f78be690f1b5c0
--- /dev/null
+++ b/firstCommit/addTwoNumbers_Lemmer.m
@@ -0,0 +1,5 @@
+function c = addTwoNumbers(a, b)
+% addTwoNumbers(a, b) returns the sum of a and b
+
+c = a + b;
+end
diff --git a/firstCommit/addTwoNumbers_StefaniaMagnusdottir.m b/firstCommit/addTwoNumbers_StefaniaMagnusdottir.m
new file mode 100644
index 0000000000000000000000000000000000000000..9c56ccf30f293f7bcfe3289e5db97489a5d59746
--- /dev/null
+++ b/firstCommit/addTwoNumbers_StefaniaMagnusdottir.m
@@ -0,0 +1,5 @@
+function c = addTwoNumbers_StefaniaMagnusdottir(a, b)
+% addTwoNumbers(a, b) returns the sum of a and b
+
+c = a + b;
+end
diff --git a/firstCommit/addTwoNumbers_hulda.m b/firstCommit/addTwoNumbers_hulda.m
new file mode 100644
index 0000000000000000000000000000000000000000..b5cd2882aa40d9cd9436bedb5d9fd3c507dd852b
--- /dev/null
+++ b/firstCommit/addTwoNumbers_hulda.m
@@ -0,0 +1,5 @@
+function c = addTwoNumbers_hulda(a, b)
+% addTwoNumbers(a, b) returns the sum of a and b
+
+c = a + b;
+end
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