s=input()
l=[]
num=""
for i in s:
    if(i>='0' and i<='9'):
        num=num+i
    else:
        if(num!=""):
            l.append(num)
            num=""
l.append(num)
print(l)

Embed on website

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