fork download
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main()
  4. {
  5. int i;
  6. for(i=1;i<=10;i++)
  7. {
  8. printf("%d",i);
  9. }
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5376KB
stdin
46
stdout
12345678910