BEGIN {
printf(" dBm        mW            V\n")
}
END {}
{
mw = 10^($0/10)
mv = sqrt(mw / 1000 * 50)
printf("%3d %13.8f %13.8f\n", $0, mw, mv)
}