p1 = gets.to_i p2 = gets.to_i n = gets.to_i ans = 0 booking = Hash.new(false) n.times do r = gets.to_i if booking[r] ans += p1 + p2 else booking[r] = true end end puts ans