I have an input file that have a length of 15, data type numeric.
----+----1----+----2
********************
1234513961848
********************
********************
1234513961848
********************
My EZT code is evaluating it as below, appending trailing zeroes.
----+----1----+----2
********************
123451396184800
********************
********************
123451396184800
********************
How do I sort my input file so that it'll be read as
----+----1----+----2
********************
001234513961848
********************
********************
001234513961848
********************