answersLogoWhite

0


Best Answer

Since you didn't specify, I will give you the answer for a TI 83 Plus Silver Addition

:Input A

:Input B

:ClrHome <--found in the prgm menu with input

:Output(1,1,A+B) <--Output also found in same menu as ClrHome

:Output(4,1,A*B)

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a program to input any two numbers and print their sum and product by leaving two lines in between?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you write a VBnet program to find the prime numbers between 100 to 200?

VBnet program to find the prime numbers between 100 to 200?


Write a program to find the product of two numbers using Halving and Doubling method?

i need this answer


Q2 Write a program to print even numbers between 10 and 50?

You can use int i; for (i = 10; i &lt;= 50; i += 2) {//print i} as a program to print even numbers between 10 and 50.


What is c program to calculate product of all even numbers from entered number down to 1?

c is programming laungage


What is the difference between qualitative and quantitative prediction?

Qualitative predictions are predictions based on quality. How effective is the product, or program expected to be? Quantitative predictions are based on quantities, in other words, numbers. How many people, products or units are expected.


Which egghead is leaving the program?

No egghead is leaving, a sixth one is joining the show.


Write a program to accept 2 numbers and tell whether the product of the two number is equal to or greater than 1000?

C programm


What is the difference between photoshop and inkscape?

Photoshop is a raster/pixel-based program, and is also a product you have to purchase. Inkscape is a vector drawing program that's free.


What are all the whole numbers between 1 to 1000000000?

All of the whole numbers between one and a billion. Honestly, we're not robots here. Write a program and do it yourself, if you really need them.


Prime numbers between 1 to 10 in microprocessor 8085?

program to find prime number in 8085 microprocessor


Write a program to print even and odd numbers in between 1 to 10?

for (int i = 2; i < 10; i ++) printf("%d\n", i); You did say even and odd numbers between 1 and 10. That's allnumbers between 1 and 10.


What is the pseudo code for a program that finds the product of two numbers?

int x; //first number int y; //second number int z = x*y;