101310: [AtCoder]ABC131 A - Security

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

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

The security code is a $4$-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 $S$. If $S$ is hard to enter, print Bad; otherwise, print Good.

Constraints

  • $S$ is a $4$-character string consisting of digits.

Input

Input is given from Standard Input in the following format:

$S$

Output

If $S$ 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 $3776$ is hard to enter.


Sample Input 2

8080

Sample Output 2

Good

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


Sample Input 3

1333

Sample Output 3

Bad

Sample Input 4

0024

Sample Output 4

Bad

Input

题意翻译

题意: 已知给出一个四位数,如果数字中有连续的数字,就把这个数叫做安全代码,如果该数字是安全代码的话就输出 Bad,反之输出 Good。

加入题单

算法标签: