#!/usr/bin/env ruby

while line = STDIN.gets
  puts Math.sqrt line.to_f
end