#include <iostream>
#include <cstring>
using namespace std;

int main() {
	char *x = "-pwtb";
	char *y = "-pwtb";

	if (x == y) {
		cout << (void*)x << endl;
		cout << (void*)y << endl;
		cout << "1" << endl;
	}
	
	if (strcmp(x, y) == 0) {
		cout << "odinakovye";
	}
	
}