Answer:
When you input 8, the output will be 40
When you input 14, the output will be 9
Explanation:
let the function = fn
If fn < 10, then output = 5(fn)
If fn ≥ 10, then, Output = fn - 5
When you input 8 ( 8 is less than 10, then multiply by 5)
fn = 8 and 8 < 10
Output = 5(fn)
Output = 5 x 8
Output = 40
When you input 14 ( 14 is greater than 10, then subtract 5 from the input)
Output = fn - 5
Output = 14 - 5
Output = 9