#include using namespace std; #define ll long long #define rep(i, m, n) for (ll i = m; i < n; i++) #define rrep(i, m, n) for (ll i = m - 1; i >= n; i--) #define pb(n) push_back(n) #define UE(N) N.erase(unique(N.begin(), N.end()), N.end()); #define Sort(n) sort(n.begin(), n.end()) #define Rev(n) reverse(n.begin(), n.end()) #define HOUT(S) cout << setprecision(50) << S << endl #define pint pair #define paf(L, R) pair #define mod 1000000007 #define MAX 10000010 #define endl "\n" #define ALL(a) a.begin(), a.end() #define chmax(a, b) a = (((a) < (b)) ? (b) : (a)) #define chmin(a, b) a = (((a) > (b)) ? (b) : (a)) template vector make_v(size_t a) { return vector(a); } template auto make_v(size_t a, Ts... ts) { return vector(ts...))>(a, make_v(ts...)); } template typename enable_if::value != 0>::type fill_v(U& u, const V... v) { u = U(v...); } template typename enable_if::value == 0>::type fill_v(U& u, const V... v) { for (auto& e : u) fill_v(e, v...); } long long modpow(long long a, long long n, long long m) { long long res = 1; a = (a % mod + mod) % mod; while (n > 0) { if (n & 1) res = res * a % m; a = a * a % m; n >>= 1; } return res; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); ll A, B, C, D, N; cin >> A >> B >> C >> D >> N; A = modpow(A, 1, mod), B = modpow(B, 1, mod); C = modpow(C, 1, mod), D = modpow(D, 1, mod); ll x = N / 4, y = N % 4; assert(y < 3); ll ans = modpow(-4, x, mod); if(x & 1) swap(A, B), swap(C, D); if(y == 0) ans = ans * ((B + D) % mod) % mod; else if(y == 1) ans = ans * 2 % mod * B % mod; else if(y == 2) ans = ans * 2 % mod * (B - C + 2LL * mod) % mod; else ans = ans * (mod - 4) % mod * A % mod; cout << ans << endl; }