CS 131 PROGRAMMING ASSIGNMENT 8 A manager wishes to organize data which represents the receipts from different turnstiles (gates) at a football stadium. Each turnstile number is followed by a sequence of positive integers representing receipts in dollars for that turnstile. A negative number terminates the receipts for each turnstile. Turnstile number -99 indicates no more turnstiles. Output (to a file) includes each turnstile number followed by the total receipts for that turnstile and the total receipts for the stadium. Sample input: 112 4 5 7 -1 234 8 9 2 8 -1 302 1 1 1 1 -1 -99 Output: TURNSTILE RECEIPTS 112 16 234 27 302 4 The total receipts for the stadium were $47.00 * In addition, find the average total per turnstile, and the turnstile number and turnstile receipts for the turnstile with the highest receipts: The average total per turnstile was: $15.67 Turnstile 234 had the highest take: $27.00