Why we are taking long long?
Why sir is defining long long?What is the use of it?
Defining long long as ll helps in making the code look simple and clean.
It doesn’t affect complexity of code. After defining long long as ll you can use ll in place of long long each time in the code.
It just helps in handling any condition where number goes out of bound, hence tackling through all test cases.