Question: Ask the user to enter a number from 10 to 50. Then print the numbers from that number to 100.
Modify the previous program to ask the user a number to start and how many numbers they want to have from that number.
For case, if a user types, 11 as a starting number and they want 5 numbers to be printed then the output is 11,12,13,14,15
Can you print the number using the given condition? Can you show me how to write a proper code for this problem and how to do it.