#include <cstdlib>
#include <iostream>
#include <string>
using namespace std;
string name = "";
int main(int argc, char *argv[])
{
cout << "Hi, whats your name? ";
cin>>name
cout << end1<< "Well Hello " << name.c_str()
<< "Please provide me two numbers on 2 seperate lines ";
cin>>number1;
cin>>number2;
cout(number1+number2) "Is the sum of those two numbers";
system("PAUSE");
return EXIT_SUCCESS;
}
Im practing and trying to make something that asks the perosn for their name, greets them than asks them for 2 numbers and gives them the sum of the two numbers.
Im getting some errors and idk how to fix it