function result = mysteryFunction(a,b)
%mysteryFunction does something mysterious
%Examples:
%  ... (omitted to make you think harder)
%D. Duck for CISC106 sect 99, 11/10/2006
  if (a < b)
    result = b / a;
  else
    result = a / b;
  return;
end;
