#include using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int n, m, k; cin >> n >> m >> k; char op; cin >> op; long long ans = 0; long long a[n], b[m]; for(int i = 0; i < m; i++) { cin >> b[i]; } for(int i = 0; i < n; i++) { cin >> a[i]; } long long int c = 0, d = 0; if(op == '+') { for(int i = 0; i < n; i++) { c += a[i]; c = c % k; } for(int i = 0; i < m; i++) { d += b[i]; d = d % k; } ans = (c * m + d * n) % k; } if(op == '*') { for(int i = 0; i < n; i++) { c += a[i]; c = c % k; } for(int i = 0; i < m; i++) { ans += c * b[i]; ans = ans % k; } } cout << ans << endl; }