diff options
Diffstat (limited to 'progs/a76.py')
-rw-r--r-- | progs/a76.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a76.py b/progs/a76.py new file mode 100644 index 0000000..f0231e4 --- /dev/null +++ b/progs/a76.py @@ -0,0 +1,6 @@ +def validity_triangle(a,b,c):
+ total = a + b + c
+ if total == 180:
+ return True
+ else:
+ return False
\ No newline at end of file |