#include <iostream>

using namespace std;


int main(){

const char cHuman = "개발자"; 


if(cHuman == "개발자"){

cout << "씹뜨억" << endl;

}

else{

cout << "씹뜨악" << endl;

}


return 0;

}