the count of ASCII chars, including ‘\n’, ’ ', etc.
You solved it in JAVA or Python??? Which language you’ll recommend for such type of questions? (Since i didnt come across a C++ soln yet, i wanna know which language is msot user friendly for such questions
)
Usually python (or pypy) because int in python is automatically big integer. It’s more readable and math-friendly than java’s BigInteger, since operations are primitive. Though python is slower, CodeChef has 5x time limit multiplier for it anyway 
1 Like
Thanks!! 