#include using namespace std; #define REP(i,n) for(int i=0; i<(n); i++) #define REP2(i,x,n) for(int i=x; i<(n); i++) #define ALL(n) begin(n),end(n) struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star; int main() { int P1, P2, N; cin >> P1 >> P2 >> N; int R; map mp; REP( i, N ) { cin >> R; mp[ R ]++; } int res{}; for( auto x:mp) { if( x.second > 1 ) { x.second--; res += x.second; } } cout << P1 * res + P2 * res << endl; return 0; }