Question 2

#define Y 5

main ()
{
    int i = Y;
    int y = 8;
    i = i - y;
    i = i + Y;
}

What is the final value of  i

i  =  

SKIP THIS QUESTION