public class main { public static void main(String[] args) { int m = 1; for (int i = 9; i > 0; i--) { m = m * 2 + 1+1; } System.out.println(m); } }