An environmental agency is writing a program to calculate the total carbon capture across three forest plots.
Calibration errors on the monitoring equipment require adjustments to be made to the calculated total.
Write a Python program to calculate the final adjusted carbon capture value.
You should assume there are three integer variables called p1, p2, and p3 which have already been assigned values representing the carbon capture measurements (in tonnes) for the three plots.
The program should:
You should use indentation as appropriate, meaningful variable name(s), and correct Python syntax in your answer.