from fractions import Fraction
import itertools

def suma_reciprocs(nombres):
    it1 = map(lambda n: Fraction(1, n), nombres)
    return sum(it1)
