#include #include int main() { const std::bitset<8> b1 { "101010" }; const std::string s { "101010" }; const std::bitset<8> b2 { s }; }