A group of people playing a game They are standing in a line each carrying a card with a number on it. this numbers or given in the list A. A random number S is selected
n = input("Enter 1st number: ").split()
s = int(input("Enter 2nd number: "))
i = s
j = len(n) - s
for i in range(i, j):
print(i, end=' ')
Comments
Leave a comment