Advertisement
MeehoweCK

Untitled

May 13th, 2023
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. int a, b;
  8. cin >> a >> b;
  9.  
  10. int suma = 0;
  11.  
  12. while(a <= b)
  13. {
  14. suma += a;
  15. ++a;
  16. }
  17.  
  18. cout << suma << endl;
  19. return 0;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement