#include
using namespace std;
int main()
{
char a[100];
cin>>a;
int temp(0);
for(int i=0;a[i]!='\0';i++)
{
if(i%2==0)
temp+=a[i]-'0';
else
temp+=10*(a[i]-'0');
}
if(temp%11==0)
cout<<"该大整数能被11整数"<<endl;
else cout<<"该大整数不能被11整除"<<endl;
return 0;
}
if(i%2==0) //表示当i为偶数
temp+=a[i]-'0'; //计算所有偶数下标数组元素的和
else //表示当i为奇数
temp+=10*(a[i]-'0'); //计算所有奇数下标数组元素*10的和
a[i]-'0'得到数组a[i]中的数字值,比如a[i] = '5',a[i]-'0' = 0x05(也就是数字5)