what is wrong with my code
import java.util.*;
public class Main {
public static void main(String args[]) {
Scanner cin = new Scanner(System.in);
long t = cin.nextLong(),count = 0;
while(t>0){
int count = 0 ;
long a=cin.nextLong(),b=cin.nextLong();
for(long i = a;i<=b;i++){
for(long j = i+1;j<=b;j++){
if(i%j!=0){
count++;
}
}
}
System.out.println(count);
t–;
}
}
}