1 2 3 4 5 6
def validity_triangle(a,b,c): total = a + b + c if total == 180: return True else: return False