Question: Write a program that reads an integer value and prints the value e raised to the power of that number. For example, if the number is 2, the program would print 7.389056 (where, e = 2.71828).
2. Write a program that reads the (x, y) coordinates for two points which form a straight line. Compute the slope of the line using the following formula:
Slope (m) = y2 - y1
x2 - x1