//程序3:函数fun(a,n)是用来求:s=a+aa+aaa+aaaa+aa...a(最后一个加数的位数为n)
//的值。请在横线上填写若干表达式,将函数补充完整。
#include <stdio.h>
#include <math.h>
long int fun(int a,int n)
{int count=1;
long int sn=0;
while (count<=n)
{sn=sn+a;
a=a*10+a;
count++;
 } 
return sn;
}
void main(){
    long int a,n,s=0;
    scanf("%d,%d",&a,&n);
    s=fun(a,n);
    printf("%d\n",s);
 }