TEAM2 - A Famous ICPC Team


Mr. B, Mr. G, Mr. M and their coach Professor S are planning their way to Warsaw for the ACM-ICPC World Finals. Each of the four has a square-shaped suitcase with side length Ai (1 <= i <= 4) respectively. They want to pack their suitcases into a large square box. The heights of the large box as well as the four suitcases are exactly the same. So they only need to consider the large box’s side length. Of course, you should write a program to output the minimum side length of the large box so that the four suitcases can be put into the box without overlapping.

Input

Each test case contains only one line containing 4 integers Ai (1<= i <=4, 1<= Ai <=1,000,000,000) indicating the side length of each suitcase.

Output

For each test case, display a single line containing the case number and the minimum side length of the large box required.

Example

Input:
2 2 2 2
2 2 2 1

Output:
Case 1: 4
Case 2: 4

Explanation

For the first case, all suitcases have size 2x2. So they can perfectly be packed in a 4x4 large box without wasting any space.

For the second case, three suitcases have size 2x2 and the last one is 1x1. No matter how to rotate or move, you could find the side length of the box must be at least 4.


hide comments
Aradhya: 2012-07-01 12:02:56

Tutorial for Sure !

npsabari: 2012-06-30 11:53:55

Hate those "Case 1".. costed me 2 WA's

Just Trying: 2012-06-28 16:19:47

Easy.. :)

Ranker: 2012-06-23 09:41:37

If you don't get the logic right, its not easy at all!!!

sachin tendulkar: 2012-06-20 20:34:58

easy!!!

Sardar Khan: 2012-06-16 16:17:42

piece of cake :)

DivineAtheist: 2012-06-14 11:37:45

very simple logic....:)got acc..

david_8k: 2012-06-14 02:50:56

@Mitch, I understand now, it's a little confusing though.

Mitch Schwartz: 2012-06-14 02:21:48

@David: The problem statement is fine, and Alex's interpretation is correct. It's just standard way to specify subscripts in a given range.

david_8k: 2012-06-14 01:58:07

@Alex 1<=i<=4 does not mean that, it means that i is in the range [1,4]... Should be corrected to i=4 if it refers to the labels. Wrong statement, fix that @trichromatic.


Added by:Fudan University Problem Setters
Date:2012-05-25
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:FDU Local Contest 2012