#!/usr/bin/env ruby

factor = ARGV[0].to_f
exit if factor==0
while line = STDIN.gets
  puts line.to_f / factor
end