WAP to display the product of two numbers.
Answers
Answered by
8
class p
{
public static void main()
{
int x,y;
int z=x*y;
System.out.println("The product is : "+z);
}
}
PLZ MARK IT AS BRAINLIST
{
public static void main()
{
int x,y;
int z=x*y;
System.out.println("The product is : "+z);
}
}
PLZ MARK IT AS BRAINLIST
Answered by
0
Answer:
Hey! Here is your code in python...
n1 = int(input("Enter a number: "))
n2 = int(input("Enter another number: "))
print("Product of numbers = ", n1*n2)
# HOPE THIS HELPS!!
Similar questions