#include <inttypes.h>

uint16_t uint16_shrmod(uint16_t x,uint16_t y)
{
  return x >> (y & 15);
}