#include <stdio.h>

void hello(char *s) {
	printf("Hello %s world\n", s);	
}

int main()
{
	hello("UFO");
	return 0;
}