people = int(input("give me the amount of people who want to auction(must be less than 101 and more than 0"))
if people < 1:
print("you arn't so popular after all")
elif people > 100:
print("you were banned for having to much pepole")
else:
print(people)
for i in (0,people):
print("i")
if you put in a number like ten, it will only print 2 "i"'s