#E. The King Problem

    Type: Default 1000ms 256MiB

The King Problem

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

Background

土拨鼠辰辰爱玩国际象棋。

Description

请问,在一个 NNN*N 的棋盘上放 KK 个国王,有没有一种摆放方案,使得这 KK 个国王互不攻击? image

Format

Input

多组数据。 第一行一个正整数 TT ,表示测试组数。 后面 TT 行,每行两个整数 NNKK

Output

若有合法的摆放方案,输出 Yes ,否则输出 No

Samples

3
1 1
3 3
4 5
Yes
Yes
No

Limitation

第2组数据:

image

1T106,1N109,0K1091≤T≤10^6,1≤N≤10^9,0≤K≤10^9