// Arup Guha
// 7/23/08
// Solution to BHCSI contest problem: Car

import java.util.*;
import java.io.*;

public class car {
	
	public static void main(String[] args) throws IOException {
		
		Scanner fin = new Scanner(new File("car.in"));
		
		int numCars = fin.nextInt();
		
		
		for(int i=1; i<=numCars; i++) {
			
			int numStudents = fin.nextInt();
			
			// Add up the weight of what all of the students can lift.
			int sum = 0;
			for (int j=0; j<numStudents; j++)
				sum += fin.nextInt();
				
			int carWeight = fin.nextInt();
			
			// Output the appropriate result based on what the campers can lift.
			if (sum >= carWeight)
				System.out.println("The BHCSIers and Chris will be able to lift car #"+i+".");
			else
				System.out.println("The BHCSIers and Chris will NOT be able to lift car #"+i+".");
		}
		
		fin.close();
	}
}