18 lines
322 B
C
18 lines
322 B
C
|
|
#include <stdlib.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main(vold){
|
||
|
|
printf("%c", 'h');
|
||
|
|
printf("%c", 'e');
|
||
|
|
printf("%c", 'l');
|
||
|
|
printf("%c", 'l');
|
||
|
|
printf("%c", 'o');
|
||
|
|
printf("%c", 'w');
|
||
|
|
printf("%c", 'o');
|
||
|
|
printf("%c", 'r');
|
||
|
|
printf("%c", 'l');
|
||
|
|
printf("%c", 'd');
|
||
|
|
printf("%c", '!');
|
||
|
|
printf("%c", '\n');
|
||
|
|
return 0;
|
||
|
|
}
|