Q4: Write an expression that will calculate the simple interest given the initial principal variable P, the interest rate variable R, and the time variable t. The equation for simple interest is
Q5: Put the code in the right order to create a program that will calculate and print the sum of the first 5 natural numbers (you must sum the numbers in order).
sum = 0
---
sum += 1
---
sum += 2
---
sum += 3
---
sum += 4
---
sum += 5
---
print(sum)