Write a program using Small Basic that prompts the user to input two integers: firstNum and secondNum (firstNum must be less than secondNum). Then using firstNum and secondNum:
a. Output all the odd numbers between firstNum and secondNum.
b. Output the sum of all the even numbers between firstNum and secondNum.
c. Output all the numbers and their squares between 1 and 10.
d. Output the sum of the squares of all the odd numbers between firstNum and secondNum.
e. Output all the uppercase letters of the alphabet.