diff --git a/src/random_number.py b/src/random_number.py index 4a1dffe4..10909098 100644 --- a/src/random_number.py +++ b/src/random_number.py @@ -4,3 +4,13 @@ # Output: # The random number is: 4 # + +import random + +def main(): + # -2_147_483_648 - 2_147_483_647 + print(random.randint(-2_147_483_648, 2_147_483_647)) + + +if __name__ == "__main__": + main()