Hackerrank For Loop Solution
A for loop is a programming language statement which allows code to be repeatedly executed.
The syntax for this is
for ( ; ; )
* expression_1 is used for intializing variables which are generally used for controlling terminating flag for the loop.
* expression_2 is used to check for the terminating condition. If