#include #include #include using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef long long ll; ll gcd(ll a, ll b) { if(b == 0) { return a; } return gcd(b, a%b); } ll extgcd(ll a, ll b, ll& x, ll& y) { ll d = a; if(b != 0) { d = extgcd(b, a % b, y, x); y -= (a / b) * x; } else { x = 1; y = 0; } return d; } ll mod_inverse(ll a, ll m) { ll b = m, x = 1, y = 0; while(b) { ll t = a/b; a -= t*b; swap(a, b); x -= t*y; swap(x, y); } return (x%m + m) % m; // ll x, y; extgcd(a, m, x, y); return (m + x % m) % m; } pair linear_congruence(const vector& A, const vector& B, const vector& M) { ll x = 0, m = 1; for(int i=0; i A(3), B(3),M(3); rep(i, 3) { cin >> B[i] >> M[i]; A[i] = 1; } auto ans = linear_congruence(A, B, M); if(ans.second == -1) { cout << -1 << endl; } else { if(ans.first == 0) { cout << ans.second << endl; } else { cout << ans.first << endl; } } return 0; }