fork download
  1. #include <stdio.h>
  2. int main(void) {
  3. int n;
  4. scanf("%d",&n);
  5. while(n--){
  6. printf("Hello Algospot!\n");
  7. }
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2296KB
stdin
2
stdout
Hello Algospot!
Hello Algospot!