n = input() m = input() if m == "0": print(1) quit() n1 = int(n[-1]) m1 = int(m[-2:]) % 4 + 4 print(pow(n1, m1, 10))