#include <stdio.h>
#include <stdlib.h>
int main(void) {
	char *bla = (char *)malloc(sizeof(char)*4);
	
	free(bla);
	return 0;
}
