#includeint main() { char letter1; char letter2; char letter3; std::cin>>letter1; std::cin>>letter2; std::cin>>letter3; std::cout<
The Answer to the Question
is below this banner.
Can't find a solution anywhere?
NEED A FAST ANSWER TO ANY QUESTION OR ASSIGNMENT?
Get the Answers Now!You will get a detailed answer to your question or assignment in the shortest time possible.
Here's the Solution to this Question
#include <iostream>
using namespace std;
int main() {
int sum=0;
int number1;
int number2;
cin>>number1;
cin>>number2;
sum=number1+number2;
cout<<sum<<"\n";
system("pause");
return 0;
}