#include <stdio.h>
#include <string.h>
int main()
{
  if (!strcmp("red", "black"))
    printf("true\n");
  else
    printf("false\n");
  return 0;
}