#include using namespace std; typedef long long int ll; typedef unsigned long long ull; typedef long double ld; int dx[8] = { 1, 0, -1, 0, 1, 1, -1, -1 }, dy[8] = { 0, 1, 0, -1, 1, -1, 1, -1 }; const long long mod = 998244353; const ll inf = 1LL << 60; const int INF = 5e8; int main() { vector a; a.push_back(1); int s = 1; while (a.size() < 9) { a.push_back(2 * s + 1); s += 2 * s + 1; } for (int i = 0; i < 9; i++) cout << a[i] << ' '; cout << endl; }