public class Test {
public static void main(String[] args) {
int k = 1, n = 10, m = 1;
while (k <= n) {
m *= 2;
k += 4;
}
System.out.println(m);
}
}