% computeSum.m P.Conrad CISC106 10/18/2006 % asks user for two numbers and computes a sum num1 = input('Please enter a number: '); num2 = input('Please enter another number: '); theSum = mySum(num1,num2); fprintf('The sum of those numbers is %d\n',theSum);