import re
n=input()
s=input()
print re.sub('\d+',lambda x:`int(x.group())*n`,s)