#include <iostream> #include <stdio.h> #include <math.h> #include <vector> #include <algorithm> using namespace std; int main(){ long long int a,b,c,d; cin >> a >> b >> c >> d; cout << ((a%d)*(b%d)%d)*(c%d)%d << endl; }