A1420.[COCI-2010_2011-contest3]#4 TABLICA

普及+/提高

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Perica was always very good at math. His only weak points were addition and division. To help him with that, his teacher presented him with the following problem.
She gave him a 2 by 2 table, containing positive integers A, B, C and D.
We say that the value of a table is equal to:
Perica’s task is to find the minimum number of 90 degrees clockwise rotations required to maximize the value of a given table.
Result of a single clockwise rotation is shown below.

输入格式

The first line of input contains two space separated integers, A and B.
The second line of input contains two space separated integers, C and D.
All integers are positive and not greater than 10
0.

输出格式

The first and only line of output must contain a single integer, minimum number of clockwise rotations required to maximize the table’s value.

输入输出样例

  • 输入#1

    1 2 
    3 4

    输出#1

    2
  • 输入#2

    5 9 
    7 2

    输出#2

    0
  • 输入#3

    41 99 
    100 13 

    输出#3

    1

说明/提示

首页