#!/usr/local/bin/python2.7
    
print "Decimal equivalents of 1/2, 1/3, 1/4, ..., 1/10:\n";
    
for i in range(2,11):
  print 1.0/i