Last active
July 12, 2016 01:03
-
-
Save KhaledElshamy/45fe204022e3da73e99ca367650ed95c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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