#include <stdio.h> int main() { int a,n; scanf("%d %d",&a,&n); int temp_a[200]={0},sum[200]={0},top,c; for(int i=0;i<n;i++){ temp_a[i]=a; for(int j=0;j<=i;j++){ sum[j]+=temp_a[j]; c=sum[j]/10; sum[j]%=10; top=j; while(c>0){ sum[++top]+=c%10; c/=10; } } } for(int j=top;j>=0;j--){ printf("%d",sum[j]); } return 0; }