Problem4532--逢七必过

4532: 逢七必过

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

逢七必过的游戏规则如下:对一个区间内的整数进行报数,若遇到的数字是 lns="http://www.w3.org/1998/Math/MathML">7 的倍数或个位数是 lns="http://www.w3.org/1998/Math/MathML">7,则不报数,输出 pass

给定开始游戏的第一个整数 lns="http://www.w3.org/1998/Math/MathML">a,及结束游戏时的最后一个整数 lns="http://www.w3.org/1998/Math/MathML">b,请输出整个报数过程。

Input

两个整数 lns="http://www.w3.org/1998/Math/MathML">a 与 lns="http://www.w3.org/1998/Math/MathML">b

1≤a≤b≤10000


Output

若干行:每行一个数字或者一个单词 pass

Sample Input Copy

1 10

Sample Output Copy

1
2
3
4
5
6
pass
8
9
10

Source/Category