You have three variables: interest_rates, years and loan_principals. They contain lists of integers. Write a for loop statement that prints the total interest paid for each loan as an integer, each one in a new line.
Use the following formula: interest_paid = interest_rate * year * loan_principal
The following lists interest_rates, years and loan_principals have already been defined; you do not need to accept any input.