// 第一道
int x = 90;
int y = 100;
while (y>0)
if(x>100){
x = x -10;
y--;
}else x++;
// 第二道
for (int i = 0;i<n;i++){
for (int j = 0;j<m;j++){
a[i][j] = 0;
}
}
// 第三道
s = 0;
for(int i = 1;i<=n;i++){
for(int j = 1;j<=n;j++){
s += B[i][j];
}
}
sum = s;
// 第四道
i = 1;
while (i<=n){
i = i * 3;
}
// 第五道
x=0;
for (int i = 1; i < n; i++){
for (int j = 1; j <= n-i; j++){
x++;
}
}
// 第六道
x = n; // n>1
y = 0;
while(x>=(y+1)*(y+1)){
y++;
}