public static Polynom operator+(Polynom f, Polynom g) { Polynom res = new Polynom(f.nodes); res.Add(g.nodes); return(res); }