Removing first line from output

my script gives 10 outputs continuously..In each output i have to remove the first line in the output.How to do that.

for eg : below is my output
0.00
1.00
5.00
0.00
7.00

i have to remove the first line of this output ie;0.00

your_cmd | tail -2

or

your_cmd | sed "1 d"
output | awk '{ if ( NR > 1  ) { print } }'

Thanks both the commands work great