#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
char a[27],b,c[6];
int i,j,k,l,m,p,q,x=1,y=1;
for(j=0;j<=5;j++) {
cin>>c[j];
if(c[j]=32){j=i;
break;}
}
for(k=0;k<=5;k++) {
cin>>a[k];
if(a[k]=32){k=m;
break;}
}
for(p=0;p<=i;p++)
x=x*(c[p]-64);
for(q=0;q<=i;q++)
y=y*(a[q]-64);
if(x%47==y%47)cout<<"GO";
else cout<<"STAY";
return 0;
}