function c = addTwoNumbers_myName(a, b)
% addTwoNumbers(a, b) returns the sum of a and b
c = a + b;
end