题库练习 The Monster
← 上一题 下一题 →

A10951 | The Monster

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times $b,b+a,b+2a,b+3a,...$ and Morty screams at times $d,d+c,d+2c,d+3c,...$ .

![](/uploads/acgo/image/763efa53ab70c1f7_a27486511aaa.jpeg)The Monster will catch them if at any point they scream at the same time, so it wants to know when it will catch them (the first time they scream at the same time) or that they will never scream at the same time.

输入格式

The first line of input contains two integers $a$ and $b$ ( $1<=a,b<=100$ ).

The second line contains two integers $c$ and $d$ ( $1<=c,d<=100$ ).

输出格式

Print the first time Rick and Morty will scream at the same time, or $-1$ if they will never scream at the same time.

输入输出样例

输入 #1
20 2
9 19
输出 #1
82
输入 #2
2 1
16 12
输出 #2
-1
C++ 编辑器
输入
输出