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

int main(void) {
	printf("%ld\n", malloc_usable_size(malloc(151)));
	return 0;
}
