#include<bits/stdc++.h>
using namespace std;
struct num{
int d[1010];
int cnt;
void upgrade(){
d[0]++;
int i=0;
while(d[i]>=10){
d[i]=0;
d[i+1]++;
i++;
cnt=max(cnt,i+1);
}
}
void Init(int i){
memset(d,0,sizeof(d));
cnt=0;
while(i){
d[cnt]=i%10;
cnt++;
i/=10;
}
}
void print(){
for(int i=cnt-1;i>=0;i--){
cout<<d[i];
}
cout<<endl;
}
};
num times(num x,num y){
num nd;
nd.cnt=0;
memset(nd.d,0,sizeof(nd.d));
for(int i=0;i<x.cnt;i++){
for(int j=0;j<y.cnt;j++){
nd.d[i+j]+=x.d[i]*y.d[j];
}
}
int len=x.cnt+y.cnt-1;
for(int i=0;i<len;i++){
if(nd.d[i]>=10){
nd.d[i+1]+=nd.d[i]/10;
nd.d[i]%=10;
}
}
if(nd.d[len]!=0){
nd.cnt=len+1;
}
else{
nd.cnt=len;
}
return nd;
}
struct lst{
int d[10];
};
lst aim;
bool cmp(num a,lst b){
int alst[10];
memset(alst,0,sizeof(alst));
for(int i=0;i<a.cnt;i++){
int now=a.d[i];
alst[now]++;
}
for(int i=0;i<10;i++){
if(alst[i]!=b.d[i]){
return false;
}
}
return true;
}
num n,tmr;
typedef long double ld;
ld LgStiring(ll n){
ld N=ld(n);
return ll(0.5*(log10(2*Pi)+log10(N))+N*log10(N/E))+1;
}
int sum;
//6 3 2 1 2 1 1 0 2 0
int main(){
for(int i=0;i<10;i++){
cin>>aim.d[i];
sum+=aim.d[i];
}
if(sum>=100010)goto G;
n.Init(1);
n.cnt=1;
tmr.cnt=1;
while(!cmp(n,aim)){
tmr.upgrade();
n=times(n,tmr);
}
tmr.print();
return 0;
G:
ll l=1,r=Border,mid;
while(l<r){
mid=l+(r-l)/2;
if(LgStiring(mid)>sum){
r=mid;
}
else{
l=mid+1;
}
}
cout<<mid<<endl;
return 0;
}