Quiz 1 fn calculate_price_of_apples(quantity: i32) -> i32 { if quantity > 40 { quantity } else { quantity * 2 } }