#include #include #include #include #include #include #include using namespace std; using ll = long long; int main() { //for (int i = 0; i < 6; i++) { // int x = i; // for (int j = 0; j < 6; j++) { // cout << x << ' '; // x *= i; // x %= 6; // } // cout << endl; //} ios::sync_with_stdio(false); cin.tie(0); string n, k; cin >> n >> k; int r = 0; for (int i = 0; i < n.size(); i++) { r *= 10; r += n[i] - '0'; r %= 6; } if ((k.back() - '0') % 2 == 0) r = r * r % 6; cout << "285714"[(r + 5) % 6] << endl; return 0; }