Write a Python program that calculates the loyalty points awarded to a delivery driver based on the number of deliveries they have completed and the number of months they have worked for the company.
The program should:
- Prompt the user to input the number of deliveries completed (as a whole number).
- Prompt the user to input the number of months worked (as a whole number).
- Calculate and output the loyalty points awarded based on the following criteria:
- If the number of months worked is less than or equal to 6 and the number of deliveries completed is greater than 80, the loyalty points awarded will be the number of deliveries completed multiplied by 5.
- If the number of months worked is greater than 6, the loyalty points awarded will be the number of deliveries completed multiplied by 12.
- In all other cases, the loyalty points awarded will be 0.
You should use syntax correct for Python, proper indentation, and meaningful variable names.