Computer Science, asked by 6Shivam92, 1 year ago

WAP to display the product of two numbers.

Answers

Answered by Samanwita
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
Answered by gaganadithyareddy9
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