Program to find Simple Interest
Input:
5000
15
1
Output:
simple interest is 750.0
Code:
p=int(input())
r=int(input())
t=int(input())
x=(p*t*r)/100
print("simple interest is ",x)
Note:
Hello Guys, Don't Stop Learning keep Going..............