x=[10,20,30] y=[1,2,3] ans=[] for i in range(len(x)): ans.append(x[i]+y[i]) print(ans)
To embed this program on your website, copy the following code and paste it into your website's HTML: