#include <iostream>
#include <bitset>
using namespace std;

int main() {
 bitset<32> a{21};
 a = {42};
 return 0;
}