eolymp
bolt
Try our new interface for solving problems
Problems

Garage

Garage

Wow! What a lucky day! Your company has just won a social contract for building a garage complex. Almost all formalities are done: contract payment is already transferred to your account.

So now it is the right time to read the contract. Okay, there is a sandlot in the form of W × H rectangle and you have to place some garages there. Garages are w × h rectangles and their edges must be parallel to the corresponding edges of the sandlot (you may not rotate garages, even by 90°). The coordinates of garages may be non-integer.

You know that the economy must be economical, so you decided to place as few garages as possible. Unfortunately, there is an opposite requirement in the contract: placing maximum possible number of garages.

Now let's see how these requirements are checked... The plan is accepted if it is impossible to add a new garage without moving the other garages (the new garage must also have edges parallel to corresponding sandlot edges).

prb6266-01 Accepted optimal plan prb6266-02 Rejected plan prb6266-03 Accepted, but non-optimal plan

Time is money, find the minimal number of garages that must be ordered, so that you can place them on the sandlot and there is no place for an extra garage.

Input

The only line contains four integers: W, H, w, h - dimensions of sandlot and garage in meters. You may assume that 1wW30000 and 1hH30000.

Output

Output the optimal number of garages.

Time limit 2 seconds
Memory limit 256 MiB
Input example #1
11 4 3 2
Output example #1
2
Input example #2
10 8 3 4
Output example #2
2
Input example #3
15 7 4 2
Output example #3
4
Source 2013 ACM NEERC, Northern Subregional Contest, St Petersburg, October 26