#include <stdio.h>

int main(void) {
	// your code goes here
	int a = 5;
	int b = a;
	printf(&a == &b ? "true" : "false");
	return 0;
}
