#include "stdafx.h"
#include <iostream>
usingnamespace std;
int main ()
{
int a;
int b;
cout << "Choose your first number";
cin >> a;
cout << "Choose your second number";
cin >> b;
cout << "The result is"<<a*b;
cout << "Press any key to exit";
cin.get();
return 0;
}
Why must you post on a solved topic?
"ty dude it works". See? It's been solved, and it worked. Helios told him the solution. And Helios already said to include climits...