#include using namespace std; int main(){ int P1; cin >> P1; int P2; cin >> P2; int N; cin >> N; vector R(N); for (int i = 0; i < N; i++){ cin >> R[i]; R[i]--; } int ans = 0; vector used(999, false); for (int i = 0; i < N; i++){ if (used[R[i]]){ ans += P1 + P2; } else { used[R[i]] = true; } } cout << ans << endl; }