Why my code is giving tle?

line no 8

 for(int i=3;i<n;i+2)
    {
        p[i]=1;
    }

error
i += 2
or i = i+2
u have mistakenly written i+2