#include <stdio.h>

int main(void) {
	// your code goes here
	printf("%d", !strcmp("\\ x", "\\ x"));
	printf("%d", !strcmp("\\ x", "\\\ x"));
	printf("%d", !strcmp("\\ x", "\\\\ x"));
	return 0;
}
