Question: Write a complete Java program that simulates a calculator that can multiply two numbers. When running, your program should produce the following output (user input in bold):Insert the first number: 10.2Insert the second number:-2The product is -20.4Your program’s main class should be named Product .// write your code below

