Write code to obtain fee amount and then calculate fee hike as 10% of fees (i.e., fees x 0.10). / sa 11 cs chapter 6, sa 11 ip chapter 3 / By PythonCSIP CS IP amount = int(input('Enter Amount')) fee_hike = 0.1*amount total_fee = amount + fee_hike print(total_fee)