#include <stdio.h>
int func(){
	static int x=1;
	x=x*2;
	return x;
}
int main(void){
int i;
for(i=0;i<5;i++){
printf("%d\n", func());
}
return 0;
}