Hello, I just started trying to learn c++ a few days ago. Right now I have run into probems, which, has always happened when I try to learn a programming language. Can anyone help me fix this simple multiplication program?
#include <iostream>
int Multiply27( first, second)
{
cout << "in multiply" << endl;
return (first * second);
}
int main()
{
using std::cout;
using std::endl;
using std::cin;
cout << "Let's Multiply!!!" << endl;
int a, b, c;
cout << "Ill let you multiply two numbers" << endl;
cout << "What numbers do you want those to be?" << endl;
cout << "number one: ";
cin >> a;
cout >> "number two: ";
cin >> b;
c=Multiply27(a ,b);
cout << "The answer is: " << c;
return 0;
}