print('Hello world!')


G=[1,2,1,3]

for _ in range(len(G)-1):
    for X in range(len(G)-1):
        if G[X] < G[X+1]:
            PoNt = G[X]
            G[X] = G[X+1]
            G[X] = PoNt
        print(G)
        
            
        
    

Embed on website

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