#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int A, B, a, b, x; cin >> A >> B >> a >> b; for (x = 0; ; ++x) if (x % A == a && x % B == b) { cout << x << '\n'; return 0; } return -1; }