// Arup Guha
// 9/21/2015
// Solution to 2004 UCF HS Problem: Sweet

import java.util.*;

public class sweet {

    public static void main(String[] args) {

        Scanner stdin = new Scanner(System.in);
        int numCases = stdin.nextInt();

        // Process each case.
        for (int loop=1; loop<=numCases; loop++) {

            // Initialize case.
            int n = stdin.nextInt();
            int sum = 0;
            System.out.println("Scenario "+loop+":");

            // Process each allowance.
            for (int i=0; i<n; i++) {

                // Add this day.
                sum += stdin.nextInt();

                // Woohoo, we get a game!
                if (sum >= 50) {
                    System.out.println("Sweet!");
                    sum -= 50;
                }

                // Sorry, no game...
                else
                    System.out.println("Bummer, I need to wait.");
            }

            // Between cases.
            System.out.println();
        }
    }
}
