fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int i,j,n;
  6. scanf("%d",&n);
  7. for(i=n;i>=1;i--)
  8. {
  9. for(j=1;j<=i;j++) printf("holle");
  10. printf("\n");}
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5320KB
stdin
6
stdout
holleholleholleholleholleholle
holleholleholleholleholle
holleholleholleholle
holleholleholle
holleholle
holle