#P7089. [NWRRC 2013] Kids in a Friendly Class

[NWRRC 2013] Kids in a Friendly Class

题目描述

Kevin resembles his class in primary school. There were girls and boys in his class. Some of them were friends, some were not. But if one person considered another person a friend, the opposite was also true.

Interestingly, every girl had exactly a friends among girls and exactly bb friends among boys, whereas every boy had exactly cc friends among girls and exactly dd friends among boys.

Kevin does not remember the size of his class. Help him reconstruct the class with minimal possible number of kids, such that the above conditions are satisfied.

输入格式

The only line contains four integers a,b,ca , b , c , and d(1a,b,c,d50)d (1 \le a , b , c , d \le 50) .

输出格式

Output an example of a class of minimal possible size satisfying the above conditions.

The first line should contains two positive integers: mm -- the number of girls, and nn -- the number of boys.

Let's assign numbers 11 through mm to the girls and m+1m + 1 through m+nm + n to the boys.

Each of the next lines should contain a pair of distinct integers describing a pair of friends by their numbers. Each pair of friends should appear exactly once in this list.

1 2 1 2

2 4
1 2
1 3
1 5
2 4
2 6
3 4
3 5
4 6
5 6

提示

Time limit: 2 s, Memory limit: 256 MB.