Use two-dimensional array to solve following problem. Company has four salespeople(1 to 4) who sell five different products (1 to 5). Once day, each salesperson passes slip for each different kind of product sold. Each slip
contains the following:
a) Salesperson number
b) Product number
c) Total dollar value of that product sold of that day
Therefore, each salesperson passes in between 0 and 5 sales slips per day. suppose that information from all of slips for last month is available. Write down program which will read all this information for last month's sales and sum-up total sales by salesperson by product. All totals must be stored in two-dimensional array sales. After processing all information for last month, print results in a tabular format with each of columns representing a particular salesperson and each rows representing particular product. Cross total each row to get total sales of each product for last month; cross total each column to get total sales by salesperson for last month. Tabular printout must include these cross totals to right of totaled rows and to bottom of totaled columns.