/** A solution to the contest problem Car Crunch. Written by Ross Byers 7/25/07
 *
 */
import java.io.*;
import java.util.*;
public class crash 
{        
    public static void main(String args[]) throws IOException
    {
    	Scanner fin = new Scanner(new File("crash.in"));
    	int n = fin.nextInt();
    	
    	// Process each case.
    	for (int i = 0; i < n; i++)
    	{
    		double car = fin.nextDouble();
    		double repair = fin.nextDouble();
    		
    		// New car case.
    		if (repair >= car)
    		{
    			System.out.println("At least you get a new car.");
    		}
    		
    		// Fix it.
    		else
    		{
    			System.out.println("We'll have that fixed right up.");
    		}
    	}
    	
    	fin.close();
    }
}
