#include <fstream>

using namespace std;

int main()
{
    ifstream fin("DATA2.txt");
    ofstream fout("OUT2.txt");
    string line;
    while(getline(fin,line))
    {
        if(line == "All Your Base")
        {
            fout << "Are Belong To Us" << endl;
        }
        else
        {
            fout << "ZIG" << endl;
        }
    }
    
    return 0;
}

