/*
 *  
 * Are 10 bytes enough for you? :)
 *
 * By Amour 
 */

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

int main(void)
{
	char	str[11];
	char	buf[0xff];
	int	myint;

	printf("int> ");
	scanf("%d", &myint);

	printf("string> ");
	scanf("%10s", str);

	sprintf(buf, 	"Hello !\n"
			"Can you exploit me ?\n"
			"Have you found the bug in this little program already ?\n"
			"Will it be enough using string \"%s\" and integer %d ?\n",
			str, myint);printf(buf);

	return 0;
}
