170k views
4 votes
#include <iostream>

{
int firstNumber, secondNumber, sumOfTwoNumbers;
cout << "Enter two integers: ";
cin >> firstNumber >> secondNumber;
cot<<”The sum of two numbers are
sumOfTwoNumbers = firstNumber - secondNumber;
cout<<sumOfTwoNumbers find the errors

User ExohJosh
by
4.7k points

1 Answer

1 vote

Answer:

you did not include the "using namespace std; " and the "intmain() "

User Lewistrick
by
4.3k points