#define _CRT_SECURE_NO_WARNINGS

#include<stdio.h>

int main()

{

void fun();

fun();

system("pause");

return 0;

}

void fun()

{

int i;

int n = 1;

for (i = 0; i < 9;i++)

{

n = (n + 1) * 2;

}

printf("%d", n);

}