时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
            空间限制:C/C++/Rust/Pascal 256 M,其他语言512 M
             64bit IO Format: %lld
        
     
    题目描述
        
        
    
            
            
	Two integers 

 are given. Please determine which one is bigger (or report that they are equal).
 
	
	Hint one : this problem can be a problem of Nowcodet April Fools Contest, but can't be a problem of Codeforces April Fools Contest for some reasons.     
	
	Hint tow : k turns to ceo.
	
	Hint three: The problem-setter of this problem is careful so he absolutely makes no stupid typo.
 
                            输入描述:
                                                    The first line contains a positice integer 
)
, the number of test cases.
For each test case, two integers 
)
 are given.
                                                                            输出描述:
                                                    If 

 is bigger, output "

" (without quotes).
If 
 is bigger, output "
" (without quotes). 
Otherwise, output 
"
" (without quotes).
                                                                            
                        
                            示例1
                        
                        
                            
                                输入
                                复制
                                
                                
                                    5
1 1
0 100
10 3
21 4
100 32
                                 
                             
                            
                                                            
                                    说明
                                    
                                        For the first sample: everyone having their kindergarten finished knows they are equal.
For the second sample: apparently, 0 is the biggest number in all possible input.
For the third sample: it's not hard to see, 3 is bigger.
For the last two samples: why are they equal?