import random
print("Hello welcome to PIP!")
num_array = list()
num = input("Please enter your name: ")
print ("Welcome to the game Adventure ")
def run_stair_yes():
print ("Running in stairs is very dangerous!")
print ("Statistique shows that you have 70% chance of falling")
print ("roll the dice!")
for i in xrange(1):
i = random.randint(1, 100)
if i <= 70 :
print ("Well, gravity is a bitch. You fell and die.")
elif i >= 71 :
athlethic()
else:
print ("im boned!")
exit(0)