Python Code for Following rules.(m+c)>=100 or (m+p)>=100 or (p+c)>=100) and (m+p+c)>=180

 Python Code for Following rules.(m+c)>=100 or (m+p)>=100 or (p+c)>=100) and (m+p+c)>=180


    m=int(input())

    p=int(input())

    c=int(input())

    if(((m+c)>=100 or (m+p)>=100 or (p+c)>=100) and (m+p+c)>=180):

        print(True)

    else:

        print(False)


Comments