#include <iostream>
using namespace std;
int main() {
long long a=2501*2501*2501;
cout<<a;
return 0;
}
I tried unsigned long long too and all the time it gives some gibberish answer. I checked the capacity of long long and it can hold this value.