Create a function that takes an expression exp and an upper limit i as arguments and returns the sum of that expression up to the i'th term (recall sigma from math class).
summation("n", 10) ➞ 55
summation("1/n", 50) ➞ 4.5
summation("n**n", 6) ➞ 50069
i = 1.