def inegalite_triangulaire(a,b,c):
    if c < a + b:
        return True
    else:
        return False
