/* Author: James Tam Version: March 1, 2021 */ public class Person { protected int caloriesExpended; public void workout() { System.out.println("Regular workout."); caloriesExpended -= 200; } }