import numpy as np
import matplotlib.pyplot as plt

# Generate x values from 0 to 100 with a step of 0.01
x = np.arange(0, 100.01, 0.01)

# Calculate corresponding y values using y = e^x
y = np.exp(x)

# Create the plot
plt.plot(x, y)

# Customize the plot
plt.xlabel("x")
plt.ylabel("y = e^x")
plt.title("Graph of y = e^x")
plt.grid(True)

# Show the plot
plt.show()