int main(){int i;int j;i=1; int sum;sum = 0; while(i<10){ j = 1; while(j<10){ sum = sum + j; j = j+1; } i = i+1; } }