#include <stdio.h>

int main(void) {
	if ("") {
		printf("empty string is truthy");
	} else {
		printf("empty string is falsy");
	}
	return 0;
}
