#include <inttypes.h>

uint8_t uint8_shrmod(uint8_t x,uint8_t y)
{
  return x >> (y & 7);
}