Print a sequence of numbers starting with N where A[0] = N, without using loop, in which A[i+1] = A[i] - 5, until A[i] > 0. After that A[i+1] = A[i] + 5 repeat it until A[i] = N.
(without using for loop, while loop, do-while loop)
The first line contains integer n as input.
Print the required sequence.
1 <= N <= 10000