# your code goes here
import matplotlib.pyplot as plt 
plt.plot(['50', '60', '70', '80', '90', '00', '10'], 
         [50, 70, 80, 120, 300, 2000, 3500])
plt.show()