#include<bits/stdc++.h> using namespace std; int main() { unsigned long long n; cin>>n; for(unsigned long long i=n;i>=1;i--) cout<<(1ULL<<i)<<endl; }