print('Hello world!')
A=[1,2,1,3,2,3,2,4]
for x in range(10):
    for T in range(len(A) - 1):
        if A[T] > A[T+1]:
            A[T],A[T+1] = A[T+1],A[T]

print(A)

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: