Statistics are often calculated with varying amounts of input data. write a program that takes any number of non-negative integers as input, and outputs the average and max. a negative integer ends the input and is not included in the statistics. ex: when the input is: 15 20 0 5 -1 the output is: 20 10