def inegalite_triangulaire(a,b,c):
    return c < a + b
