python program to read Principal Amount, Rate of Interest , years . Find Simple Interest.
Answers
Answered by
2
Answer:
p=int(input("enter a principle amount: "))
t=int(input("enter a time period: "))
r=float(input("enter rate of interest: "))
si=(p*t*r)/100
print("The simple interest is {}".format(si))
Similar questions