#include <stdio.h>
#define CONCAT(string) "start"string"end"

int main(void) {
	 printf(CONCAT("-hello-"));
	return 0;
}