//This class groups the three inputs together in order to be passed by reference, //i.e. when this class is passed as a parameter, the modification on the integer //values will take effect. //You should NOT make changes to this class! public class Input { public int targetSavings = -1; public int numberOfMonths = -1; public double interestRate = -1; }