Proofs of Existence and Optimality · Difficult Problems in Number Theory (Optional)

Lesson 9

Nikolai Chukhin · Alexander S. Kulikov

In decimal notation, the minimal triplet of such numbers will have more than eighty digits!

from fractions import Fraction

a = 154476802108746166441951315019919837485664325669565431700026634898253202035277999
b = 36875131794129999827197811565225474825492979968971970996283137471637224634055579
c = 4373612677928697257861252602371390152816537558161613618621437993378423467772036

print(Fraction(a, b + c) + Fraction(b, c + a) + Fraction(c, a + b))

4