Create the logic for a program that accepts inputs value for the projected cost of a vacation and the number of months until vacation. Pass both value to a method that displays the amount you must save per month to achieve your goal.

To create a program that accepts input values for the projected cost of a vacation and the number of months until vacation, and then calculates the amount you must save per month to achieve your goal, you can follow these steps in any programming language:

1. Ask the user to input the projected cost of the vacation.
- You can use a function or method, depending on the programming language, to prompt the user for input and store it in a variable. For example: `projected_cost = input("Enter the projected cost of the vacation: ")`

2. Ask the user to input the number of months until the vacation.
- Use a similar approach as step 1 to prompt the user for input and store it in a variable. For example: `months_until_vacation = input("Enter the number of months until the vacation: ")`

3. Convert the input values from strings to appropriate data types.
- The variables `projected_cost` and `months_until_vacation` will likely be strings after the user inputs them. Convert them to numerical data types, such as integers or floats, using the appropriate conversion method, e.g., `projected_cost = float(projected_cost)`

4. Calculate the amount the user must save per month to achieve the goal.
- Divide the projected cost by the number of months until the vacation to get the monthly savings amount. For example: `savings_per_month = projected_cost / months_until_vacation`

5. Display the result to the user.
- Output the calculated savings per month to achieve the goal. The method used for displaying the result will depend on the programming language you are using. For example: `print("You must save $" + str(savings_per_month) + " per month to achieve your goal.")`

That's it! By following these steps, you can create a program that accepts inputs for a vacation's projected cost and the number of months until the vacation, and then calculates the amount to save per month to achieve the goal.