d={0:"",1:"1",2:"14",3:"142",4:"1428",5:"14285"} N=int(input()) if N==0: print("0") else: print("0."+"142857"*(N//6)+d[N%6])