Question Description: The grandest stage of all, WrestleMania, recently happened. And with it, happened one of the biggest heartbreaks for the WWE fans around the world. The Undertaker's undefeated streak was finally over. Now as an Undertaker fan, you're disappointed, disheartened and shattered to pieces. And Randy Orton doesn't want to upset you in any way possible. (After all you are his only friend, true friend!) Randy Orton knows that you're still sensitive to the loss, so he decides to help you out. Every time you come across a number, Randy Orton carefully manipulates it. He doesn't want you to face numbers which have "21" as a part of them. Or, in the worst case possible, are divisible by 21.
C Program


#include<stdio.h>

#include<string.h>

#include<stdlib.h>

int main()

{

    int t,i;

    char s[20];

    scanf("%d",&t);

    for(i=0; i<t; i++)

    {

        scanf("%s",s);

        int num = atoi(s);

        int flag = 0;

        if(num % 21 == 0)

            flag = 1;

        if(strstr(s,"21") != NULL)

            flag = 1;

        if(flag)

            printf("The streak is broken!\n");

        else

            printf("The streak lives still in our heart!\n");

    }

    return 0;

}