CF1486B Eastern Exhibition

Description

You and your friends live in $ n $ houses. Each house is located on a 2D plane, in a point with integer coordinates. There might be different houses located in the same point. The mayor of the city is asking you for places for the building of the Eastern exhibition. You have to find the number of places (points with integer coordinates), so that the summary distance from all the houses to the exhibition is minimal. The exhibition can be built in the same point as some house. The distance between two points $ (x_1, y_1) $ and $ (x_2, y_2) $ is $ |x_1 - x_2| + |y_1 - y_2| $ , where $ |x| $ is the absolute value of $ x $ .

Input Format

N/A

Output Format

N/A

Explanation/Hint

Here are the images for the example test cases. Blue dots stand for the houses, green — possible positions for the exhibition. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1486B/ef8e7107a46bf60bf70b2b89dad798828df776de.png) First test case. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1486B/3bfbc5c12bc5661837030d46309064e5728abb33.png) Second test case. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1486B/f4355abdf55b6e2aba57eaba9ac1bd5b3e9a9937.png) Third test case. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1486B/7ac3252595a464db25ea4d6a5a88bb674df5da85.png) Fourth test case. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1486B/2ad0e39ceaeb8df93cdbdc07468766d61acf71ed.png) Fifth test case. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1486B/bf530ae677a95adfe7eacb87263816efab51ccdb.png) Sixth test case. Here both houses are located at $ (0, 0) $ .