#include <stdio.h>

int main(void) {
	char x[] = "one\0\0\0two\0three";
    printf("%s %s %s\n", x, x+6, x+10);
	return 0;
}
