aboutsummaryrefslogtreecommitdiff
path: root/works/solutions/acwing/2065.cpp
blob: a0c47c204886818bafaeff90028842414dc9f935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

int main() {
  std::ios_base::sync_with_stdio(false);
  std::cin.tie(nullptr);

  long long n;
  std::cin >> n;

  while (n) {
    std::cout << n << ' ';
    n /= 2;
  }

  return 0;
}