fork download
  1. #include <stdio.h>
  2. int main(){
  3.  
  4. for(int i=10; i>=1; i--){
  5. printf("%d",i);
  6. }
  7. printf("\n");
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 5288KB
stdin
3
5
8
2
1
3
2
4
5
6
stdout
10987654321