#take the input from the user
amount=int(input("Enter the amount: "))
interest=float(input("Enter interest: "))
years=int(input("Enter no of years: "))
# compute the future value using the formula
future_value=amount*((1+(0.01*interest))**years)
#print the value computed
print(future_value)