#include <stdio.h>

int main() {
  char x = 3, y = 6;

  printf("%d\n",x | y);
  return 0;
}
