import matplotlib.pyplot as plt
x = range(100)
y = range(100)
plt.bar(x,y)
plot.show()