// In this exercise you receive n and k and write a code that // iterates over {0,...,n-1}^k, i.e., all k-uples (t_1,..., t_k) // where t_1, ..., t_k are in {0,...,n-1}. // // The idea here is: for n = 2, we just iterate from 0 to 1<