#!/usr/bin/env python3
import matplotlib.pyplot as plt
#
plt.plot([3.0,4.0,5.0,6.0,7.0,8.0],[8.0,16.0,32.0,64.0,128.0,256.0],'ro')
plt.show()




