N=int(input()) if N==0: print(0) else: NUM=10**N NUM//=7 ANS=str(NUM) ANS="0."+ANS print(ANS)