eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

A Famous ICPC Team

A Famous ICPC Team

Лимит времени 1 секунда
Лимит использования памяти 32 MiB

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 A_i (1i4) 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.

Входные данные

Each test case contains only one line containing 4 integers A_i (1i4, 1A_i1000000000) indicating the side length of each suitcase.

Выходные данные

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

Пример

Входные данные #1
2 2 2 2
2 2 2 1
Выходные данные #1
Case 1: 4
Case 2: 4

Примечание

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

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

Источник ACM ICPC Fudan Local Programming Contest 2012