#include <iostream>
#include <string.h>
using namespace std;

int main() {
	auto s = "aaa";
	auto r = "bbb";
	if(strcmp(s,r)) {
		cout << "Равны" << endl; 
	}
	if(!strcmp(s,r)) {
		cout << "Не равны" << endl; 
	}
	
	return 0;
}