#include <inttypes.h>

uint32_t uint32_bottombit_01(uint32_t x)
{
  return (1 & x);
}