Sun and Moon
문제
You recently missed an eclipse and are waiting for the next one! To see any eclipse from your home, the sun and the moon must be in alignment at specific positions. You know how many years ago the sun was in the right position, and how many years it takes for it to get back to that position. You know the same for the moon. When will you see the next eclipse?
입력
The input consists of two lines.
The first line contains two integers, and , where is how many years ago the sun was in the right position, and is how many years it takes for the sun to be back in that position.
The second line contains two integers, and , where is how many years ago the moon was in the right position, and is how many years it takes for the moon to be back in that position.
출력
Output a single integer, the number of years until the next eclipse. The data will be set in such a way that there is not an eclipse happening right now and there will be an eclipse within the next years.
예제
예제 1
3 10 1 2
7