Computer Science, asked by manyagoyal73, 5 months ago

Write a code to obtain fee amount and than calculate fee hike as 10% of fees.

Answers

Answered by chandrahasapoojary2
0

Answer:

amount = int(input('Enter Amount')) fee_hike = 0.1*amount total_fee = amount + fee_hike print(total_fee)

Similar questions