write and two input two numbers and print the product of the number
Answers
Answered by
0
Answer:
please write the question properly
Answered by
0
Answer:
In java,
Explanation:
import java.util.*;
class show
{
public static void main(String args[])
{
int a,b;
Scanner ss=new Scanner(System.in);
a=ss.nextInt();
b=ss.nextInt();
System.out.println("The product is "+(a*b));
}
}
Similar questions