-- This program reads in two groups of 10 integers -- and prints the 10 sums of the corresponding -- elements of each group. procedure finishthis is -- declare types, procedures, and variables here begin -- return first 10 input numbers in in1 -- and the next 10 in in2 fill(in1, in2); -- return sum of corresponding values in1 -- and in2 in sum sum(in1, in2, sum); -- display values in sum print(sum); end fill;