%g(number) -> prints output
%Author: James Atlas
%Description:
% Takes a number and prints that number through the number 5
%Example:
% g(2) -> 2
%         3
%         4
function []=g(x)
  while (x < 5)
      disp(x);
  end