a program that asks for the user's input of a list of numbers and sort it in reverse in python
a = raw_input("Enter a number: ")
while True:
b = raw_input("Do you want to input more: ")
c = raw_input("Enter another number:")
if b == 'yes':
print (c)
continue
elif b == 'no':
my_list = [a,c]
my_list.sort(reverse=True)
print(my_list)
break