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