CJCoding With Joseph

Valid Triangle

Read three positive integers representing side lengths. Print 'Valid' if they can form a triangle, otherwise 'Invalid'.

Three sides form a triangle only if each pair of sides adds up to more than the third side.

Expected Output:

Valid
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
3 4 5\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.