• + 0 comments

    def kangaroo(x1, v1, x2, v2): for i in range (0,10001,1): if v1>v2 and (x2-x1)%(v1-v2) == 0 : return "YES" else: return "NO"