Bitset:

#include
#include
using namespace std;int main(){ stack
st; int n; while(cin>>n){ while(n){ st.push(n%2); n/=2; } while(!st.empty()){ cout<