read s for i in `seq $s` do if((i%3&&i%5)) then echo -n $i fi if((i%3==0)) then echo -n Fizz fi if((i%5==0)) then echo -n Buzz fi echo done