#include using namespace std; const int N = 110; int b[N], bl; int main() { int n = 13; while (n) { int a = n % 2; n /= 2; b[++bl] = a; } for (int i = bl; i; i--) cout << b[i] << " "; return 0; }