propagation.c 106 Bytes
 int main(void){
int a=1,b=2,c=3, i=2;
int d=a*c,e=d+2*b;
while(i > 0) { i--; if(e!=2) e--; }
return e;
}