#! /bin/bash

for ((i=0;i<=500;i++))
do
     n=$((i%7))
     if [ $n -eq 0 ]
     then
       echo $i
     fi
done