#!/usr/bin/env python3
import matplotlib.pyplot as plt
#
plt.plot([1.0,2.0,4.0,8.0,16.0,32.0,64.0])
plt.show()




