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