d=([*1..99].map(&:to_s)+[?1]).*("").to_i n=gets.to_i if n==1 puts "0."+d.to_s else d=(d*n).to_s g=d.length-190 d=?0+d d=[d[0..g],d[g+1..-1]] if g==0 puts "0."+d[1] else puts d[0][1..-1]+?.+d[1] end end