Write а functiоn cаlled get_tаxrate that cоnsumes a number representing tоtal income. The function should return the taxrate according to the following criteria: "10%" for income less than 10275 (incluisve) “12%" for income between 10276 and 41775 (inclusive) “22$” for income between 41776 and 89075 (inclusive) “24%” for income greater than 89076 (inclusive) Note: this is a simplification of taxes in the US and should not be used to determine your true taxrate. If you accidently erase the unit tests, you can copy them from here. assert_equal(get_taxrate(10275),"10%")assert_equal(get_taxrate(10276),"12%")assert_equal(get_taxrate(41775),"12%")assert_equal(get_taxrate(41776),"22%")assert_equal(get_taxrate(89075),"22%")assert_equal(get_taxrate(89076),"24%")