N = int(input()) M = int(input()) n = N % 10 ans = n for i in range(M-1): ans *= n if ans >= 10: ans %= 10 print(ans)