write a program to print the ticket numbers of N people in the order in which they will be allowed to enter the garden
data = sorted([52, 44, 61, 75, 85, 41, 33])
print("The first person who enters the garden is: ", data[0])
print("The second person who enters the garden is: ", data[1])
print("The third person who enters the garden is: ", data[2])
Comments
Leave a comment