#include<bits/stdc++.h> using namespace std; int main() { int n=1; for(int i=1;i<=30;i++){ n*=2; cout<<n-1<<" "; } return 0; }