digitconcatenation pattern

⚠⚠One samll request to all
please change variables to solve programs that's safe for u



n=input().strip()

for i in range(len(n)-1):

    if n[i]!='0':

        print(int(int(n[i])*(n[i+1:])))

Post a Comment

0 Comments