# **Practice Task**
:::warning
Write a program that count the odd numbers between a specific range of values.
:::
:::info
you have to do these requirements:
1. let the user of your program enter the start values and end value of the range that the user want to count the odd values.
2. make a loop between the start and end value.
3. check each number if it's a odd number.
4. print the count of the both odd number.
:::