As the DMPG draws nearer, the organizers realize that they should check the school registration! They find that schools have registered and the school will send competitors to the Gala. There's just one problem: due to safety restrictions, no more than competitors can attend the Gala. Can you tell the organizers how many more competitors can register last minute?
Constraints
Input Specification
The first line of input will contain a single integer, .
The second and final line of input will contain space separated integers, .
Output Specification
If there are already more than competitors, output Over maximum capacity!
.
Otherwise, output the number of empty spots left.
Sample Input 1
2
100 50
Sample Output 1
50
Sample Input 2
3
120 60 30
Sample Output 2
Over maximum capacity!
Sample Input 3
3
50 50 100
Sample Output 3
0
Comments