1#include <iostream>
2using namespace std;
3
4int main() {
5 float firstCalculation = 0.00, secondCalculation = 0.00;
6 cout << "Enter the first calculation, it's addition anyway!\n";
7 cin >> firstCalculation;
8 cout << "Enter your second calculation\n";
9 cin >> secondCalculation;
10 float fullCalculation = firstCalculation + secondCalculation;
11 cout << "The answer is: " << fullCalculation;
12
13 return 0;
14}