from decimal import * getcontext().prec = 300 d = "0."+"".join(map(str,range(1,100)))+"1" print(Decimal(d)*int(input()))