use std::io::Read; fn run() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); let mut it = s.trim().split_whitespace(); let h: usize = it.next().unwrap().parse().unwrap(); let w: usize = it.next().unwrap().parse().unwrap(); let k: usize = it.next().unwrap().parse().unwrap(); let op = it.next().unwrap().chars().next().unwrap(); let mut b: Vec = (0..w).map(|_| it.next().unwrap().parse().unwrap()).collect(); let mut a: Vec = (0..h).map(|_| it.next().unwrap().parse().unwrap()).collect(); b.sort(); a.sort(); let f = |a, b| if op == '+' {a + b} else {a * b}; let mut cnt = 0; let mut j = w; for &a in a.iter() { while j > 0 && f(a, b[j - 1]) >= k { j -= 1; } cnt += w - j; } println!("{}", cnt); } fn main() { run(); }