Write a Python program to calculate the amount payable if money has been lent on simple interest. Principal or money lent = P, Rate = R% per annum and Time = T years.

P = int(input(“Enter Principal Amount or Money lent”))
R= int(input(“Enter Rate of Interest”))
T = int(input(“Enter Time Period”))
SI = (P*R*T)/100
amt = P + SI
print(“Amount Payable is = ” , amt)

error: Content is protected !!