Skip to content

Instantly share code, notes, and snippets.

@KhaledElshamy
Last active July 12, 2016 01:03
Show Gist options
  • Select an option

  • Save KhaledElshamy/45fe204022e3da73e99ca367650ed95c to your computer and use it in GitHub Desktop.

Select an option

Save KhaledElshamy/45fe204022e3da73e99ca367650ed95c to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(void) {
//URI ONLINE JUDGE 1759
int a,i;
scanf("%d", &a);
for (i = 0;i < a-1;i++)
printf("Ho ");
if(i==a-1)
printf("Ho!");
printf("\n");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment