summaryrefslogtreecommitdiff
path: root/progs/a76.py
blob: f0231e40078236399fd1caa4d884eb34ba97870a (plain)
1
2
3
4
5
6
def validity_triangle(a,b,c):
 total = a + b + c
 if total == 180:
    return True
 else:
    return False