# for num in {0..500};do
# if (($num%7==0 ))
# then
# echo "${num}"
# fi
# done;
for((i=0;i<=500;i++)){
if((i%7==0))
then
echo $i
fi
}