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

int main(void) {
	char **r = (char **)malloc(5 * sizeof(char *));
	return 0;
}
