Problem A
Stórafmæli
                                                                Languages
                        
                            
                                                                    en
                                                                    is
                                                            
                        
                                                                
  Jónas’s birthday is tomorrow and he is trying to decide whether to have a party. One of Jónas’s new year resolutions was to only have parties if it’s a big anniversary, those being every ten years.
Given the age Jónas is turning tomorrow, reply whether it is a big anniversary or not.
Input
The input is a single line containing an integer $n$ ($1 \leq n \leq 10^6$), Jónas’s age in years.
Output
Print Jebb if it’s a big anniversary, print Neibb otherwise.
Scoring
| Group | Points | Constraints | 
| 1 | 50 | $1 \leq n \leq 40$ | 
| 2 | 50 | No further constraints | 
| Sample Input 1 | Sample Output 1 | 
|---|---|
| 2 | Neibb | 
| Sample Input 2 | Sample Output 2 | 
|---|---|
| 20 | Jebb | 
| Sample Input 3 | Sample Output 3 | 
|---|---|
| 37 | Neibb | 
