#include <inttypes.h>

uint8_t uint8_shlmod(uint8_t x,uint8_t y)
{
  return x << (y & 7);
}