Advertisement
laith-0093

C++

Jan 13th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main ()
  5. {
  6. int i,j,k ;
  7. cout<<"Enter 2 numbers" << endl;
  8. cin>>i;
  9. cin>>j;
  10. k=i+j;
  11.  
  12. cout<<" the sum is " << k;
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement