//This is practice using variables. attempt #2 to make a basic add,sub.,multi.,divide calculator :)
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main ()
{
double a;
double b;
double result;
cout << "Please enter #1" << endl;
cin >> a; //cIN tells the program to store any variable/integer for future use and set it as "a"
;
cout << "Please enter #2" << endl;
cin >> b; //cIN tells the program to store any variable/integer for future use and set it as "b"
;
cout << "#1 plus #2 is: ";
result=a+b; //tells the program to add a to b
cout << result << endl;
cout << " " << endl;
cout << "#1 minus #2 is: ";
result=a-b; //tells the program to subtract b from a
cout << result << endl;
cout << " " << endl;
cout << "#1 times #2 is: ";
result=a*b; //tells the program to multiply a by b
cout << result << endl;
cout << " " << endl;
cout << "#1 divided by #2 is: ";
result=a/b; //tells the program to divide a by b
cout << result << endl;
cout << " " << endl;
cout << "This is kAblE's first calculator in cpp" << endl;
cout << "Thanks for using it!" << endl;
system ("pause");
return 0;
}

Me in 2-3 days. 
cout << " " << endl;