#include <stdio.h>

int main() {
  int x = 3;

  printf("%d\n",x<<3);
  printf("%d\n",x>>1);
  return 0;
}
