#include <stdio.h>
#include <string.h>

int main()
{
	// Stuff on the stack:
	char str1[8] = "hejhopp";
	char str2[8];
	
	printf("To break the system, enter an 8 letter string:\n");
	gets(str2);
	strcpy(str1, "PASSWRD");
	printf("You entered: %s\n", str2);
}
