Two integers, babies1 and babies2, are read from input as the number of babies for two rabbits. headObj has the default value of -1. Create a new node firstRabbit with integer babies1, and insert firstRabbit after headObj. Then, create a second node secondRabbit with integer babies2, and insert secondRabbit after firstRabbit. Ex: If the input is 20 28, then the output is: -1 20 28 in java