#include <stdio.h>

int main() {
	const char* str = "Hello";

	int len;
	for(len = 0; str[len++];);
	printf("%d", len);

	return 0;
}
