#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main()
{
   double input = 0;
   double exp_val;
   printf("Plese enter the exponent to check for convergence:\n");
   scanf("%lf", &input);
   printf("%f\n", input);/*Checking to verify the input is entered*/
   exp_val = exp(input);
   printf("%f\n", exp_val);
   getchar();
}