#abc131a. [abc131_a]Security

[abc131_a]Security

Problem Statement

The door of Snuke's laboratory is locked with a security code.

The security code is a 44-digit number. We say the security code is hard to enter when it contains two consecutive digits that are the same.

You are given the current security code SS. If SS is hard to enter, print Bad; otherwise, print Good.

Constraints

  • SS is a 44-character string consisting of digits.

Input

Input is given from Standard Input in the following format:

SS

Output

If SS is hard to enter, print Bad; otherwise, print Good.


Sample Input 1

3776

Sample Output 1

Bad

The second and third digits are the same, so 37763776 is hard to enter.


Sample Input 2

8080

Sample Output 2

Good

There are no two consecutive digits that are the same, so 80808080 is not hard to enter.


Sample Input 3

1333

Sample Output 3

Bad

Sample Input 4

0024

Sample Output 4

Bad