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