c1st
#include <stdio.h>
int main(void) {
for(int i=0; i<10; i++){
if(i == 0){
printf("Hello World!\n");
}else{
printf("%d\n", i);
}
}
return 0;
}INFO