#try to avoid input function a = int(input()) b = int(input()) c = int(input()) if a+b > c or a+c > b or b+c > a: print("Valid Triangle") else: print("Invalid Triangle")
Click the run button. Try to avoid input() function.