create a public class newmaximumcounter that counts the number of times a new value is larger than the previously-added value. when created, a newmaximumcounter accepts a single int that sets the initial value. provide a method named newvalue that accepts a single int. if the passed int is strictly larger than the value saved by the newmaximumcounter, update the value and increase the count by one. otherwise do nothing. newvalue does not return a value. provide a getter for the count following our usual naming convention. you should not expose any other instance state publicly. here's how your class should work: