File size: 70 Bytes
1514a0b
 
 
 
1
2
3
4
def triangle_area(r):
    if r < 0:
        return -1
    return r * r