8- Given an input linked list with N nodes (I1, I2, I3 .... IN) and having integral values at each node, how would you construct a resultant linked list with N nodes (R1, R2, R3 .... RN) and having integral values such that, for evrey value of K, RK = (I1 x I2 x I3 x .... x I(K-2) x I(K-1)) x (I(K+1) x I(K+2) x .... x I(N-1) x IN) ?