#include <iostream>
using namespace std;

int main() {
	// your code goes here
	int  c = 0;
	std::cout << (c == c++ ? "TRUE" : "FALSE");
	return 0;
}