/* L3-2.cpp (Syntax Error, Using Constants) What is wrong with this program? */ #include using namespace std; int main() { const int value, mulitplier=9; cout << "Enter a number" << endl; cin >> value; cout << value << " * " << multiplier << " = " << value * multiplier << endl; return 0; }