Write a function calculate_score(num_str, multiplier) that receives a numeric string num_str (e.g., "10") and a numeric multiplier (float or int). The function should:
- Convert
num_strto an integer. - Multiply it by
multiplier. - Truncate the product to an integer (drop any decimal part).
- Return a message string exactly formatted as
"Final score: X"whereXis the truncated integer.
Examples
calculate_score("10", 2.5) # returns "Final score: 25"
calculate_score("3", 1.9) # returns "Final score: 5"