numberlist =[]
for i in range(10,51):
    i =int(i)
    numberlist.append(i)
print(numberlist)
print(f'{numberlist[0]} {numberlist[40]}')