{$R-}    {Range checking off}
{$B+}    {Boolean complete evaluation on}
{$S+}    {Stack checking on}
{$I+}    {I/O checking on}
{$N-}    {No numeric coprocessor}
{$M 65500,16384,655360} {Turbo 3 default stack and heap}

{ Filename: Convert.pas
  Copyright (c) 1988 - All rights reserved
  by Martin J. Maher, MJM Engineering, P.O. Box 2027, Hawthorne, Ca. 90251 }

program Convert;
uses cconv;

BEGIN
  ParseArguments(pstr,ustr);
  write(ustr,blank);
  Choose(pstr,quantity,length(ustr)+1)
END.
