Given an integer ranging from to , this integer represents your credit score.
If your credit score is between and , you should output bad
.
If your credit score is between to , then output ok
.
Otherwise, if your credit score is between to , output good
.
Input Specifications
Output Specification
The output will be bad
, ok
, or good
, depending on the expected output given the credit score.
Sample Input 1
100
Sample Output 1
bad
Sample Input 2
220
Sample Output 2
good
Comments