Packaging TeX Live For MSYS2

Calculate Simple Interest

Calculate Simple Interest 

calculate simple interest

Coding

#Calculate Simple interest
p=int(input('Type your principle amount : '))
ir=int(input("Type your rate of interest : "))
t=int(input(" Type time (in year) : "))
si=(p*ir*t)/100;
print("You will get interest : %s"%si) 

This will ask for principle,rate of interest and time and print the simple interest

Comments