Print an enumeration of numbers - Online Service

Online service to print an enumeration of numbers



Start: an integer number in the range [-10^18, 10^18]

End: an integer number in the range [-10^18, 10^18]

Step: an integer number in the range [-10^18, 10^18] and not 0

The number of elements in the enumeration must be <= 10^6 and the step should be positive if the start is less than the end, negative otherwise

The enumeration of numbers from 1 to 10 with step 1 is: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10.

The enumeration of numbers from -5 to 10 with step 2 is: -5, -3, -1, 1, 3, 5, 7, 9.

The enumeration of numbers from 10 to 1 with step -1 is: 10, 9, 8, 7, 6, 5, 4, 3, 2, 1.