#include <inttypes.h>

uint16_t uint16_bitmod_01(uint16_t x,uint16_t y)
{
  x >>= y & 15;
  return (1 & x);
}