#K59382. Daily Level Bonus Checker

    ID: 30852 Type: Default 1000ms 256MiB

Daily Level Bonus Checker

Daily Level Bonus Checker

In this problem, you are given a list of 25 integers, each representing the number of levels a player completed on a consecutive day. The task is to determine whether the player qualifies for a bonus. The bonus is awarded if the total number of levels completed over the 25 days is at least \(20\).

Your program should read the input from standard input (stdin) and output the result to standard output (stdout) as follows: print "Bonus" if the sum of the levels is \(\geq 20\), and "No Bonus" otherwise.

inputFormat

The input consists of a single line containing exactly 25 space-separated integers. Each integer corresponds to the number of levels completed on that day.

outputFormat

Output a single line with the word "Bonus" if the total sum of the levels is at least 20, or "No Bonus" otherwise.

## sample
3 1 4 2 4 1 3 2 0 1 5 2 1 4 3 2 0 1 3 2 1 4 1 2 0
Bonus