#include <stdio.h>
int main()
{
float PrincipalAmount = 30000, Rate = 4, Years = 3;
float SimpleInterest = (PrincipalAmount * Rate * Years) / 100;
printf("Simple Interest is : %.2f", SimpleInterest);
return 0;
}
/*
run:
Simple Interest is : 3600.00
*/