#include using namespace std; /* 1.Write a program that returns the product of two integers using the program below as a prototype. 2. Use the program in 1. to display a table of integers from 1 to 5 and their squares. N Square 1 1 2 4 3 9 */ int addition (int a, int b) { int r; r=a+b; return r; } int main () { // int z =5; // z = addition (5,3); cout << "The result is " << addition (5,3) << endl; return 0; }