Write a function basketball_score(two_pointers, three_pointers) that receives the number of made 2‑point shots and 3‑point shots (they may be integers or strings that represent integers). The function should return a string reporting the total points, formatted exactly as:
Total points: X
where X is the computed total.
Examples
basketball_score(3, 2)should return"Total points: 12".basketball_score("4", "1")should return"Total points: 11".