#ABC131A. Security

Security

题目描述

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.

斯努克实验室的门是用安全密码锁着的。

安全密码是一个 44 /位数字。当安全密码包含两个相同的连续数字时,我们就说它是_难以输入的_。

当前的安全码是 SS 。如果 SS 难以输入,则打印 "坏";否则打印 "好"。

输入格式

输入内容按以下格式标准输入:

SS

输出格式

如果 SS 难以输入,则打印 "坏";否则,打印 "好"。

样例 #1

样例输入 #1

3776

样例输出 #1

Bad

样例 #2

样例输入 #2

8080

样例输出 #2

Good

样例 #3

样例输入 #3

1333

样例输出 #3

Bad

样例 #4

样例输入 #4

0024

样例输出 #4

Bad

说明

数据规模与约定

  • SS 是一个由数字组成的 44 字符串。

样例 11 解释

第二位和第三位数字相同,因此 37763776 很难输入。

样例 22 解释

没有两个连续数字是相同的,因此 80808080 并不难输入。