#include <bits/stdc++.h>
using namespace std;
int main()
{
int g,n;
while(cin>>g>>n)
{
int temp=0;
int j=0;
int maxx=0;
while(n>0)
{
int sum=0;
for(int i=0;i<g;i++)
{
if(n>0)
{
sum=sum+n%10;
n=n/10;
}
else
break;
}
j=j+1;
maxx=max(maxx,sum);
if(maxx==sum)
temp=j;
}
cout<<temp<<' '<<maxx<<endl;
}
return 0;
}