#include <iostream>
#include <string.h> //strcmp関数を使う為
using namespace std;
int main(void){
// Your code here!
if( ((char *)"ABC") == ((char *)"ABC") ){
printf("true");
} else {
printf("false");
}//endif
}
true