#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string s, t; cin >> s >> t; int n = s.back() - '0'; int m; if(t.size() == 1) { m = t[0] - '0'; if(m == 0) { cout << 1 << endl; return 0; } } else { m = s.back() - '0' + 10 * (s[s.size() - 2] - '0'); } cout << (int)pow(n, m % 4 + 4) % 10 << endl; return 0; }