#include <iostream>
#include <string>
using namespace std;

int main() {
    string s;
    string a;
    while (cin >> s) { // 注意 while 处理多个 case
        for (int i=0; i<s.size(); i++) {
            switch (s[i]) {
                case 'a':
                    a.push_back(s[i]);
                    break;
                case 'b':
                    if (a[a.size()-1]=='a') {
                        a.pop_back();
                    }
                    else {
                        a.push_back(s[i]);
                    }
            }
        }
        // cout<<a;
        if (a.empty()) {
            cout<<"Good"<<endl;
        }
        else {
            cout<<"Bad"<<endl;
        }
    }
}
// 64 位输出请用 printf("%lld")