执行下列程序段后,a的值是          。
int a=1,b=175;
do{ a*=b%10;
   b/=10;
 }while(b);
 printf("%d\n",a);