Hello. I have 2 input files with each file containing numbers from 1 to 12. I have to generate the following output file in this format using sort jcl. Please help
1*1=1
1*2=2
.
.
.
1*12=12
2*1=2
2*2=4
.
.
.
2*12=24
.
.
12*12=144
//SYSIN DD *
JOINKEYS F1=SORTIN01,FIELDS=(1,2,A)
JOINKEYS F2=SORTIN02,FIELDS=(1,2,A)
REFORMAT FIELDS=(F1:1,2,F2:1,2)
BUILD=(1,2,ZD,MUL,6,2,ZD,3,1,C'*')
OPTION COPY
/*