fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a=1;
  5. int b=0;
  6. for(a;a<=10;++a)
  7. {
  8. b=a+b;
  9. }
  10. printf("%d",b);
  11. // your code goes here
  12. return 0;
  13. }
  14.  
  15.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
55