It takes an input n and outputs the numbers from 1 to n. For each multiple of 3, print "Fizz instead of the number. For each multiple of 5, prints "Buzz" instead of the number. For numbers which are multiples of both 3 and 5, output "FizzBuzz".
You need to make the code to skip the even numbers, so that the logic only applies to odd numbers in the range