#!/bin/python3

import sys

h = [int(h_temp) for h_temp in input().strip().split(' ')]
word = input().strip()

print(len(word)*max(map(lambda x:h[ord(x)-ord('a')], word)))