how to use long int in python code example

Example: long int in python

/********************************************************************************************
As a side note, in Python 3, there is only one typeintfor all type of integers.
In Python 2.7. there are two separate types “int(which is 32 bit) andlong int”
that is same asint” of Python 3.x, i.e., can store arbitrarily large numbers.
*********************************************************************************************/