Write a program that estimates the rental price for the house (including the tax). The program should ask the user to select the type of the house (1. Flat 2.Villa) If the user selects Flat: The program should ask the user about the number of rooms (How many rooms do you need (minimum 2 maximum 7)?). The user should insert a number between 2 -7. If the user inserts any others input, the system will display a massage (Invalid input). The program should ask the user about the features (Which features would you like to have?) and displays features' menu (a. Storage b. Driver room c. I need both storage and driver room d. I don't need to have more features) To calculate the price: consider 25000 SR for the flat with 2 rooms and for each extra room add more 5000 SR. Add more 2000 SR, if the user needs storage. Add more 1000 SR, if the user needs driver room. If the user selects Villa: The program should ask the user about the number of rooms (How many rooms do you need (minimum 3 maximum 9)?). The user should insert a number between 3-9. If the user inserts any others input, the system will display a massage (Invalid input). The program should ask the user about the features (Which features would you like to have?) and displays features' menu (a. Swimming Pool b. Garden-c. I need both swimming pool and garden d. I don't need to have more features) To calculate the price: consider 50000 SR for the villa with 3 rooms and for each extra room add more 8000 SR. Add more 7000 SR, if the user needs swimming pool. Add more 5000 SR, if the user needs garden. Finally, calculate 5% tax for the total price. Then, print the final estimation price message The rental estimation price is: 0.0 SR". If the user inserted invalid input the total price will be Zero. Note: Please, do not use any iterations (for or while loops) in this