function gluttony_with_args(number, food)
%
% Print a text message describing your personal
%   record for eating a large amount of food.
%   Use the input arguments to modify the
%   statement.
%
% Usage:  glutton_with_args   number  food
%
% where
%            number         is how many servings were eaten
%
%            food           is the type of food which was eaten
%
% Returns: nothing
%
% MWR 11/27/2012


fprintf(1, 'I once ate %d servings of %s \n', number, food);


end