number = int(input("Enter a number: ")) for i in range (1, number + 1) : print(i) for n in range (number -1 , 0, -1) : print(n)