#include<stdio.h>void main(){int i=5,j=8,k=20;i+=j*=k/6;printf("i=%d\n",i);printf("j=%d\n",j);printf("k=%d\n",j);}