CF BUDDY
← Problems·

1041B · Buying a TV Set

1000 · math

Problem: Monocarp has decided to buy a new TV set and hang it on the wall in his flat. The wall has enough free space so Monocarp can buy a TV set with screen width not greater than aa and screen height not greater than bb. Monocarp is also used to TV sets with a certain aspect ratio: formally, if the width of the screen is ww, and the height of the screen is hh, then the following condition should be met: wh=xy\frac{w}{h} = \frac{x}{y}.

There are many different TV sets in the shop. Monocarp is sure that for any pair of positive integers ww and hh there is a TV set with screen width ww and height hh in the shop.

Monocarp isn't ready to choose the exact TV set he is going to buy. Firstly he wants to determine the optimal screen resolution. He has decided to try all possible variants of screen size. But he must count the number of pairs of positive integers ww and hh, beforehand, such that (wa)(w \le a), (hb)(h \le b) and (wh=xy)(\frac{w}{h} = \frac{x}{y}).

In other words, Monocarp wants to determine the number of TV sets having aspect ratio xy\frac{x}{y}, screen width not exceeding aa, and screen height not exceeding bb. Two TV sets are considered different if they have different screen width or different screen height.

Input Format: The first line contains four integers aa, bb, xx, yy (1a,b,x,y10181 \le a, b, x, y \le 10^{18}) — the constraints on the screen width and height, and on the aspect ratio.

Output Format: Print one integer — the number of different variants to choose TV screen width and screen height so that they meet the aforementioned constraints.

Note: In the first example, there are 33 possible variants: (5,3)(5, 3), (10,6)(10, 6), (15,9)(15, 9).

In the second example, there is no TV set meeting the constraints.

In the third example, there is only one variant: (3,2)(3, 2).

Sample Cases

Case 1

Input

17 15 5 3

Output

3

Case 2

Input

14 16 7 22

Output

0

Case 3

Input

4 2 6 4

Output

1

Case 4

Input

1000000000000000000 1000000000000000000 999999866000004473 999999822000007597

Output

1000000063

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback