#include <stdio.h>

#define STRING_SIZE( STR ) sizeof(STR)

int main(void) {
	printf("%d", STRING_SIZE("OP HUY"));
	return 0;
}
