Почему алгоритм O(n^3)? def a(N): k = 0 for i in range (N**2): for j in range (N//2): print(k) k += 1