﻿from pylab import *

def Expo(N,h):
    x=0
    y=1
    plot(x,y,'r.')
    for k in range(1,N+1):
        x=x+h
        y=y*(1+h)
        plot(x,y,'r.')
    show()
    return()

