def main(): a=3 b=5 funcao(a,b) c=[1,2,3] d=[4,5] funcao(c,d) def funcao(x,y) # nao sei quem sao x e y z=x+y print(z) #--------- main()