#include using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int A, B, a, b, x=0; cin >> A >> B >> a >> b; while(1){ if (x % A == a && x % B == b){ cout << x << endl; break; } x++; } return 0; }