n=gets.to_i m=gets.to_i s=1 t=1 100.times{|i| a=(n*t).to_f b=(m*s).to_f f=a/b r=(f).floor if f-r.to_f==0 if r%10==0 s*=10 next else p r%10 exit end end t*=10 } p -1