Hide

Problem B
Spritt

Languages en is
/problems/spritt/file/statement/en/img-0001.png
Everyone at Reykjavík University is disinfecting their hands these days and Elvar isn’t sure if there’s enough sanitizer for all the classrooms. Elvar knows how many bottles of sanitizer are available and how many bottles each classroom needs, but because Elvar is very busy he has a hard time finding out whether there’s enough to go around and asks you to help.

Input

The first line of the input contains two integers n (1n106), the number of classrooms at Reykjavík University, and x (1x108), how many bottles of sanitizer are available.

Then there are n lines, one for each classroom, where the i-th line contains one integer ai (1ai108), how many bottles of sanitizer the i-th classroom needs. The sum of all ai will not be over 2109.

Output

Print Jebb if every classroom can receive the bottles they need and print Neibb otherwise.

Scoring

Group

Points

Constraints

1

50

1n103

2

50

No further constraints

Sample Input 1 Sample Output 1
5 12
3
1
4
2
2
Jebb
Sample Input 2 Sample Output 2
3 2
1
2
3
Neibb
Hide

Please log in to submit a solution to this problem

Log in