#include using namespace std; int main() { double principal, time, rate, interest, amount; cout<<"Enter the Principal Amount: "; cin>>principal; cout<<"Enter the Number of Yers: "; cin>>time; cout<<"Enter the Rate of Intrest: "; cin>>rate; interest = (principal * time * rate)/100; amount = principal + interest; cout<<"The interest is "<