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)
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)