function area = areaOfRectPizza(length,width)
%areaOfRectPizza compute area of rectangular pizza, given length and width
%
% consumes: 
%     length: number, length of the pizza in inches
%     width:  number, width of the pizza in inches
% produces:
%     area: number, area of the pizza in square inches
%     
% examples
%     >> areaOfPizza(10,12)
%     ans = 120
%     >> areaOfPizza(13,13)
%     ans = 169
%     
% M.Haggerty  CISC105 section 99, 09/03/2007
  
  area = -42;
  return;
  
end % function
