#include <inttypes.h>

uint32_t uint32_shlmod(uint32_t x,uint32_t y)
{
  return x << (y & 31);
}