#include <stdio.h>
#include <stdlib.h>
#include <time.h>

int main(void) {
	int r;
	srand(time(NULL));
	r = rand()%3;
	if(r==1){
		printf("Hello\n");
	} else {
		printf("bye\n");
	}
	return 0;
}
