require 'set' C = [gets,gets].map(&:to_i).sum V = Set.new G = gets.to_i G.times {|_| V << gets.to_i } puts (G - V.size) * C