Problem 1
Write a program that asks the user to input a starting number of beer bottles and an ending number of beer bottles. The beer song lyrics should start and end accordingly. Your program should pass this codecheck and have the following output:Problem 2Write a program that reads in two integers M and N from the user. Print out N letters of the alphabet starting at the Mth letter. You should be careful to not exceed the letter ‘z’, even if the user types an unreasonably large value for M.CodecheckProblem 3Write a program that continually prints “Are we there yet?” to the user. The program should stop asking this question when the user types y, Y, or yes.Codecheck