Write a Python program to calculate Simple Interest given Principal, Rate of interest, and Time using formula (P * R * T) / 100.
Three space-separated numbers: Principal, Rate, and Time.
Print the calculated simple interest.
P >= 0, R >= 0, T >= 0
1000 5 2
100.0
Simple interest is calculated as product of principal, rate, and time divided by 100.
# Write your code here
Embedded systems rely on efficient low-level programming to interact directly with hardware. In this course, you will learn how to write practical Embedded C programs used in real microcontroller-based systems. Rather than focusing only on theory, this course follows a practice-driven approach. Each lesson includes hands-on coding exercises that simulate real firmware development tasks used