print('Hello world!') def addic(A,B): H = A H[0] = H[0] + B[0] H[1] = H[1] + B[1] return H k = [[1,2],[3,4]] print(addic(k[0],k[1]))
To embed this project on your website, copy the following code and paste it into your website's HTML: