so, here's my code
#include <iostream>
#include<math.h>
using namespace std;
int main()
    int T, N;
    int i = 1;
    int y = 5;
    cin >> T;
        while (T-- ) {
            cin >> N;
                int c = pow(N, y);
                int z = (c + 1) / (N + 1);
                cout << "Kasus #" << i++ << ": " << z << endl;
        }
}
all i want to do is limiting the user input ( T and N), T is between 1 and 10, N is between 1 and 100000, how can i do that?
 
    