The Simple Interest Program
The Simple Interest Program print("\t \t \t \t The Simple Interest Program ") a = input('\n Enter the Principal amount = ') b = input('\n Enter the Time = ') c = input('\n Enter the Rate of interest = ') si = (float(a) * float(b) * float(c)) / 100 print("\n The Simple Interest is = ", si)