Inner Loop:
k runs till n and k = k^1.3 in every iteration
=> k, k^1.3, k^1.3^1.3, k^1.3^1.3^1.3..... k^1.3^x
equating it to n, we get x = O(log log n).
Outer Loop:
j runs till log n and j = 1.3 *j in every iteration
=> j, j*1.3, j*1.3*1.3, .... j*1.3^x
equating it to log n, we get x = O(log log n).
Time Complexity = O((log log n)^2)