#include <iostream>

int main() {
	if (-1)
		std::cout << "-1 is True";
	if (0)
		std::cout << "0 is True";
	return 0;
}