Python can generate random numbers using the random module. But sometimes we want to make limitations by a range.
Write a program that creates n variable which is a random number from -100 to 100. Use the randint function from the random module. This function inputs two numbers: the range's start and end.
Please, don't change the variable's name! You shouldn't print the variable, just create it.