1095 比较大小


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

给定两个整数A,B(1≤A,B≤1000),请判断两数的关系。

Input

第一行整数T表示测试数据组数。接下来T行每行两个整数分别表示A,B。 如果AB输出Bigger。

Sample

Input

3
4 5
3 3
4 3

Output

Smaller
Equal
Bigger

Comments

There are no comments at the moment.