# Python Program to Calculate Profit or Loss actual_cost = float(input(” Please Enter the Actual Product Price: “)) sale_amount = float(input(” Please Enter the Sales Amount: “)) if(actual_cost – sale_amount > 0): amount = actual_cost – sale_amount print(“Total Loss Amount = {0}”.