laith-0093

C++

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