from decimal import * getcontext().prec = 200 N = int(input()) D = '0.' for n in range(1,101): D += str(n) print(Decimal(D) * N)