void main()
{
int c=5;
int a=3;
}

int foo(int b)
{

}

int fun()
{
int a=9;
a=foo(foo(a));
}
