fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int a,b;
  6. a=0;
  7. b=0;
  8. while(1)
  9. {
  10. a=a+1;
  11. b=b+a;
  12.  
  13. if(a<100)
  14. {}
  15.  
  16. else
  17. {
  18. printf("%d",b);
  19. break;}
  20. }
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0.01s 5268KB
stdin
Standard input is empty
stdout
5050