def suma_i_mnozenie (n): a = 0 b = 1 for x in n :niu a += x b *= x print " Wynik dodawania : %d \n Wynik mnozenia : %d" % (a,b)