T=int(input()) for _ in range(T): a,b,c=map(int,input().split()) print(((a*pow(10,c,10*b))%(10*b)-(a*pow(10,c,b))%b)//b)