#include using namespace std; #define int long long // <-----!!!!!!!!!!!!!!!!!!! #define rep(i,n) for (int i=0;i<(n);i++) #define rep2(i,a,b) for (int i=(a);i<(b);i++) #define rrep(i,n) for (int i=(n)-1;i>=0;i--) #define rrep2(i,a,b) for (int i=(b)-1;i>=(a);i--) #define all(a) (a).begin(),(a).end() typedef long long ll; typedef pair P; typedef tuple TUPLE; typedef vector V; typedef vector VV; typedef vector VVV; signed main() { std::ios::sync_with_stdio(false); std::cin.tie(0); int a, b, c, d; cin >> a >> b >> c >> d; int ans = a; ans *= b; ans %= d; ans *= c; ans %= d; cout << ans << endl; }