fork(1) download
  1.  
  2.  
  3. #include <stdio.h>
  4.  
  5. int main() {
  6. {
  7. int i,j,a;
  8. scanf("%d",&i);
  9. scanf("%d",&j);
  10. if(i<j)
  11. for(i=i; i<=j; i++) {
  12.  
  13. a=a+i;
  14. printf("%d",a);
  15.  
  16. }
  17.  
  18. else
  19. for(j=j; j<=i; j++) {
  20.  
  21. a=a+j;
  22. printf("%d",a);
  23. }
  24. }
  25.  
  26.  
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0s 5292KB
stdin
9
4
stdout
4915223039