Q2: Write an expression that will calculate the distance travelled in miles given the variables speed (in miles per hour) and time (in hours) and assign it to a variable called miles.
Q3: Write an expression that will calculate the number of pennies equivalent to a given an amount of money represented by the number variable money and assign it to a variable called pennies.
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
\begin{equation*}
A = P(1 + \frac{R}{100}T)
\end{equation*}
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).