100 atcoder#ABC131A. [ABC131A] Security
[ABC131A] Security
Score : points
Problem Statement
The door of Snuke's laboratory is locked with a security code.
The security code is a -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 . If is hard to enter, print Bad
; otherwise, print Good
.
Constraints
- is a -character string consisting of digits.
Input
Input is given from Standard Input in the following format:
Output
If is hard to enter, print Bad
; otherwise, print Good
.
3776
Bad
The second and third digits are the same, so is hard to enter.
8080
Good
There are no two consecutive digits that are the same, so is not hard to enter.
1333
Bad
0024
Bad