Write a program to fetch state and marital status of 5 users.
Use NESTED SELECT..CASE to find out the number of people who belong to each of the regions below.
If the user is from "CA", "NV", "AR", "WA",
count them towards westernregion
If the user is from "NY", "MA", "FL", display
count them towards eastern region
If the user is from "TX", "AL", "GA", display
count them towards southern region
ELSE display " You might be from Midwestern states"
Within each region, count the number of people who are married, single, divorced and separated.
Make sure you test the program intensively before submitting it.