n=gets.to_i m=gets.to_i r=n%10 n=1 while m>0 if m%2==1 then n=(n*r)%10 end r=(r*r)%10 m=m/2 end puts n