#Lutece0655. Krolia的数字游戏

Krolia的数字游戏

Migrated from Lutece 655 Krolia的数字游戏

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Krolia正在研究一个无聊的数字游戏。一开始有一个整数nn,由dd位数位构成。她每次都会选择两个相邻的数位,将其中一个加11,其中一个减11。减11的那个数位必须大于00,并且不能出现前导00。如果加11的那位是99,则99会变成两个数位,成为1010

现在Krolia想知道,能否通过这种变换,将数nn变为数mm

Input

第一行一个整数tt(t100t\leq 100),表示测试数据的组数。

每组测试数据一行:两个整数n,mn,m(0m,n1090\leq m,n\leq 10^9)。

Output

每组数据输出一个字符串:yes或者no,对应能否将mm变成nn

Samples

3
10 1
92 101
110 200
no
yes
yes

Resources

KroliaFansCLub