Write a program that reads this information and summarizes the total sales by salesperson by product. All totals should be stored in the two-dimensional array sales. After each input, print the results in tabular format, with each of the columns repre- senting a particular salesperson and each of the rows representing a particular product. Cross-total each row to get the total sales of each product for last month; cross total each column to get the total sales by salesperson for last month. Your neat tabular printout should include these cross-totals to the right of the totaled rows and at the bottoms of the totaled columns. Use VBScript function FormatCurrency as part of your solution.
Use a two-dimensional array to solve the following problem. A company has four salespeople (with salesperson numbers
1 to 4) who sell five different products (with product numbers 1 to 5). Once a day, each salesperson passes in a slip for each different
type of product sold. Each slip contains the salesperson number, product number and the total dollar value of that product sold that
day.
```
1
2
3
4
5
6
7
8
9
10
11
Please enter a salesperson slip:
12
13