MOD = "142857" N = gets.to_i puts N == 0 ? 0 : ("0." + N.times.map{|i| MOD[i % 6]}.join)