Runtime Error UVa 100

This C++ code throws runtime error. I have tested it against some edge cases like 1 9999, 9999 1 and line with blank spaces only. Can anyone please suggest what am I missing here?

Problem Statement: Online Judge

#include<iostream>
#include<vector>
#include<set>
#include<algorithm>
#include<unordered_map>
#include<map>
using namespace std;
typedef unsigned long long int lli;
#define For(i,n) for(lli I=i;I<n;I++)
#define COUNT 10000

lli solve(lli n) {
  lli count=1;
  while(n>1) {
    ++count;
    if(n%2)
      n=3*n+1;
    else
      n=n/2;
  }
  return count;
}

int main() {

  lli i,j;
  lli *freq=new lli[COUNT];
  for(lli I=1;I<COUNT;I++) {
    freq[I]=solve(I);
  }
  while(cin >> i >> j)
  {
    lli ma=0;
    lli I=min(i,j);
    lli J=max(i,j);
    for(lli x=I;x<=J;x++)
      if(freq[x]>ma)
        ma=freq[x];
    cout << i << " " << j << " " << ma << "\n";
  }
  return 0;
}

/*

   Sample Input
   1 10
   100 200
   201 210
   900 1000
   Sample Output
   1 10 20
   100 200 125
   201 210 89
   900 1000 174

*/

Nope, cin and cout works fine. The issue was with the count macro, range of input is mentioned incorrectly in the problem statement. Changing count macro to higher value get the solution accepted.

yes changing the macros count to 1e6+1 will work