#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]; long long row = 0, column = 0; for(int i = 0; i < m; i++) { cin >> b[i]; row += b[i]; } for(int i = 0; i < n; i++) { cin >> a[i]; column += a[i]; } if(op == '+') { for(int i = 0; i < n; i++) { ans += a[i] * m; } for(int i = 0; i < m; i++) { ans += b[i] * n; } } if(op == '*') { for(int i = 0; i < n; i++) { ans += a[i] * row; } } cout << ans % k << endl; }