#include <inttypes.h>

uint16_t uint16_shlmod(uint16_t x,uint16_t y)
{
  return x << (y & 15);
}