i = 1,2,3....9 가 될 때, j = 0 으로 초기화 되어야 함.


int cnt = 5;
 for (int i=0; i< 10; i++) {
  for (int j=5; j< 10; j++)  {

cnt++;

}}