summaryrefslogtreecommitdiff
path: root/sqrt
blob: 39382e6438629611067cc178eab57fa5e1be9336 (plain)
1
2
3
4
5
#!/usr/bin/env ruby

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