#pragma GCC target("avx") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include // #include // #include // #include // using namespace __gnu_pbds; // #include // namespace multiprecisioninteger = boost::multiprecision; // using cint=multiprecisioninteger::cpp_int; using namespace std; using ll=long long; using datas=pair; using ddatas=pair; using tdata=pair; using vec=vector; using mat=vector; using pvec=vector; using pmat=vector; // using llset=tree,rb_tree_tag,tree_order_statistics_node_update>; #define For(i,a,b) for(i=a;i<(ll)b;++i) #define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i) #define rep(i,N) For(i,0,N) #define rep1(i,N) For(i,1,N) #define brep(i,N) bFor(i,N,0) #define brep1(i,N) bFor(i,N,1) #define all(v) (v).begin(),(v).end() #define allr(v) (v).rbegin(),(v).rend() #define vsort(v) sort(all(v)) #define vrsort(v) sort(allr(v)) #define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end()) #define endl "\n" #define popcount __builtin_popcountll #define eb emplace_back #define print(x) cout< ostream& operator<<(ostream& os,const pair& p){return os<<"("< ostream& operator<<(ostream& os,const vector& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const set& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const multiset& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< ostream& operator<<(ostream& os,const map& v){ os<<"{";bool f=false; for(auto& x:v){if(f)os<<",";os< inline bool chmax(T& a,const T b){bool x=a inline bool chmin(T& a,const T b){bool x=a>b;if(x)a=b;return x;} #ifdef DEBUG void debugg(){cout<void debugg(const T& x,const Args&... args){cout<<" "<size;--i)modncrlistm[i-1]=modncrlistm[i]*i%mod; } return modncrlistp[n]*modncrlistm[r]%mod*modncrlistm[n-r]%mod; } ll modpow(ll a,ll n,const ll m=mod){ if(n<0)return 0; ll res=1; while(n>0){ if(n&1)res=res*a%m; a=a*a%m; n>>=1; } return res; } constexpr ll gcd(const ll a,const ll b) noexcept{return (!b)?abs(a):(a%b==0)?abs(b):gcd(b,a%b);} constexpr ll lcm(const ll a,const ll b) noexcept{return a/gcd(a,b)*b;} class matrix{ mat a; ll H,W; public: matrix(mat& g):a(g){ H=g.size(); W=g[0].size(); } matrix(ll i,ll j):a(i,vec(j,0)){H=i;W=j;} matrix(ll n):a(n,vec(n,0)){H=W=n;} inline vec& operator [](int k){ return a.at(k); } auto begin(){return a.begin();} auto end(){return a.end();} // matrix operator =(matrix b){ // this->a.swap(b->a); // this->H=b.H; // this->W=b.W; // return (*this); // } matrix operator +=(matrix b){ ll i,j; rep(i,this->H)rep(j,this->W)(*this)[i][j]+=b[i][j]; return (*this); } matrix operator -=(matrix b){ ll i,j; rep(i,this->H)rep(j,this->W)(*this)[i][j]-=b[i][j]; return (*this); } matrix operator *=(matrix b){ ll i,j,k; assert(this->W==b.H); matrix c(this->H,b.W); rep(i,this->H)rep(k,this->W)rep(j,b.W){ (c[i][j]+=(*this)[i][k]*b[k][j])%=10; } (*this)=c; return (*this); } matrix operator ^=(ll K){ assert(this->H==this->W); matrix c(this->H); ll i; rep(i,this->H)c[i][i]=1; if(K&1)c*=(*this); while(K){ K>>=1; (*this)*=(*this); if(K&1)c*=(*this); } this->a.swap(c.a); return (*this); } matrix operator +(matrix c){ return matrix(*this)+=c; } matrix operator -(matrix c){ return matrix(*this)-=c; } matrix operator *(matrix c){ return matrix(*this)*=c; } matrix operator ^(ll K){ return matrix(*this)^=K; } void out(){ for(auto x:a)output(x); } }; ll N,M,K,H,W,A,B,C,D; string s,t; ll ans; int main(){ startupcpp(); // int codeforces;cin>>codeforces;while(codeforces--){ ll i,j; matrix A(3,3),v(3,1); rep(i,3){ cin>>v[2-i][0]; v[2-i][0]%=10; A[0][i]=1; } A[1][0]=A[2][1]=1; cin>>K; K-=3; A^=K; v=A*v; print(v[0][0]); }