#include <iostream>
using namespace std;

int main() {
	// your code goes here
	static constexpr bool a=true,b=true;
	if constexpr(a && !b){
		cout<<"true"<<endl;
	}else
	
		cout<<"false"<<endl;
	return 0;
}