write a program to calculate the simpleinterest
Answers
Answered by
2
Answer:
p=(int(input("enter a principle:")))
r=(int(input("enter a rate of intrest:")))
t=(int(input("entr the time period:")))
c=p*r*t
print c
Similar questions