from random import sample

N = 10 # Количество чисел
low = 1 # Верхняя и нижняя границы
high = 100

print(sample(range(low, high), N))
