#include <inttypes.h>

uint32_t uint32_shrmod(uint32_t x,uint32_t y)
{
  return x >> (y & 31);
}