summaryrefslogtreecommitdiff
path: root/progs/a812.py
blob: 5db50187a857176de19d7e780330827f88eba580 (plain)
1
2
3
4
5
6
def check_Triangle(x1,y1,x2,y2,x3,y3): 
    a = (x1*(y2-y3)+x2*(y3-y1)+x3*(y1-y2))   
    if a == 0: 
        return ('No') 
    else: 
        return ('Yes')