fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int summ(int i, int n) // де (і, n) - низ та верх
  5. {
  6. if (n==i) return i;
  7. else return i+summ(i+1,n);
  8. }
  9.  
  10. int main() {
  11. // your code goes here
  12. cout<<summ(2,5);
  13.  
  14. return 0;
  15. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
14