#include main() { int n, i; n = 1; for (i = 9; i >= 1; i--) { n = (n+1)*2; } printf("%d\n", n); return 0; }