Hide

Problem C
Mörk

Languages en is
/problems/mork/file/statement/en/img-0001.jpeg
Image from pexels.com
Siggi made a machine that can predict the results of football games, but due to being defective it only says how many goals were scored and how many teams scored, never saying which team actually won. Now Siggi needs money so he wants to use his machine to bet on games, but only if he’s sure he’ll win the bet. Siggi can bet on team A winning, team B winning or there being a tie. Can you help him?

Input

The input consists of two lines. The first line contains an integer $n$, the number of goals scored. The second line contains an integer $m$, $0$ if neither team scored, $1$ if only one team scored and $2$ if both teams scored.

Output

Print Jebb if Siggi should bet on the game, Neibb otherwise.

Scoring

Group

Points

Constraints

1

100

$0 \leq n \leq 10^9, 0 \leq m \leq 2$

Sample Input 1 Sample Output 1
1
1
Neibb
Sample Input 2 Sample Output 2
3
2
Neibb
Sample Input 3 Sample Output 3
8
1
Neibb

Please log in to submit a solution to this problem

Log in