#!/usr/bin/env ruby

while (line = STDIN.gets)
  case line.chomp!
  when /^#\(\*\*\)/
    _a, _b, _c, throughput, rtt, jitter = line.split
    puts 'throughput: ' + throughput
    puts 'RTT: ' + rtt
    puts 'jitter: ' + jitter
  end
end
