answersLogoWhite

0


Best Answer

7x8=56

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What two numbers mul tiply to make56?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the least common mul tiple for the number 120?

You need to provide two or more positive integer numbers.


WhAT IS a two step mul tiplication problem?

40x7


How do you say multiply in spanish?

The verb "to multiply" in Spanish is "mutiplicar." The command form, in other words, if you are telling a student to multiply some numbers, is "multiplica." The first word is pronounced 'Mul-tee-plee-CAR." The second one is pronounced "mul-tee-PLEE-cah."


Can mul berry trees be grown in America?

ya i have two of em in my back yard


Write a c program that multiplies two numbers by repeated subtraction?

int mul (int a, int b) { int sum= 0; for (; b>0; --b) sum -= -a; for (; b<0; ++b) sum -= a; return sum; }


What is twenty two in Korean?

In Native Korean, it's 스물둘 (seu-mul-dul) and in Sino-Korean, it's 이십이 (ee-ship-ee).


What are the two numbers If the sum of two numbers is 8 The difference of two numbers is 2 What are the two numbers?

5,3


What is product of two numbers?

The product of two numbers is the answer to multiplying the two numbers together.


What does the quantity of two numbers equal?

The quantity of two numbers is the product of the two numbers. Just multiply them together. The answer is the quantity of the two numbers.


What is the LCM of two numbers is t (always sometimesnever) he product of the two numbers?

The LCM of two numbers is sometimes the product of the two numbers.


The product of two posotive numbers or two negative numbers is?

The product of two positive numbers or two negative numbers is a positive number.


How do you input two numbers not using operation by multiplication by using addition?

I suppose you wanted to ask: how to do multiplication with repeated addition. int mul (int a, int b) { int sum= 0; int sign= 1; if (b<0) { sign= -1; b= -b;} for (; b; --b) sum = sum + a; return sign*sum; }