#include <stdio.h>

int main(void) {
	char s[8]="Hello";
	int i=0;
	while(s[i]!= '\0'){
		printf("%c", s[i]);
		i++;
	}
	printf("\n");
	return 0;
}
