
//import the Scanner object
import java.util.Scanner;

public class Operators {

	public static void main(String[] args) {
		//create the Scanner
		Scanner input = new Scanner(System.in);
		
		//read an int and a double
		System.out.print("Enter an integer: ");
		
		//wait here until the user types something
		int intValue = input.nextInt();
		
		System.out.print("Enter a double: ");
		
		//wait here until the user types something
		double doubleValue = input.nextDouble();
		
		//print the int times the double
		//compute the result
		double result = intValue * doubleValue;
				
		System.out.println("The product is: " + result);
	}

}
