write a code take two numbers and two numbers are possitive and any one number greater than 5.

 write a code take two numbers and two numbers are possitive and any one number greater than 5.


    a=int(input())

    b=int(input())

    print((a>0 and b>0) and (a>=5 or b>=5))

Comments