battery =50
if battery >30:
    print("the robot can move now")
else:
    print("the robot needs to charge battery first")

mark =50
if mark >50:
    print("you succeed")
else:
    print("you failed")

points =110
if points >100:
    print("you win")
else:
    print("you failed")