#set variables p, r, n, t p = xxxxxx # original principal sum r = xxxxxx # annual interest rate (decimal) n = xxxxxx # times per year to compound t = xxxxxx # time in years #calculate p' using *, +, exp(), remember PEMDAS p_prime = xxxxxxxxxxxx print(p_prime)