Create a function that takes the number of wins, draws and losses and calculates the number of points a football team has obtained so far.
wins get 3 pointsdraws get 1 pointlosses get 0 pointsfootball_points(3, 4, 2) ➞ 13
football_points(5, 0, 2) ➞ 15
football_points(0, 0, 1) ➞ 0
Inputs will be numbers greater than or equal to 0.