#include <inttypes.h>

uint64_t uint64_bottombit_01(uint64_t x)
{
  return (1 & x);
}