% Function that sums and multiplies two numbers function [sum1, product1] = operations(a, b); sum1 = a + b; product1 = a* b; return;