Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. #includes <iostream>
  2. using namespace std;
  3. int main() {
  4.     int a,b;
  5.     cout << "Enter 2 numbers: ";
  6.     cin >> a >> b;
  7.     cout << "The sum is " << a+b << endl;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement