pythondef main(): j = 0 for i in range(10_000_000): j = i return j print(main())
pythonj = 0 for i in range(10_000_000): j = i print(j)