Assuming that the user inputs a value of 25 for the price and a value of 10 for the discount rate in the following code snippet, what is the output? import java.util.Scanner; public class determinePrice { public static void main(String[] args){ Scanner in = new Scanner(System.in); System.out.print("Enter the price: "); double price = in.nextDouble(); System.out.print("Enter the discount rate: "); double discount = in.nextDouble(); System.out.println("The new price is " + (price - price * (discount / 100.0))); } }