Created
July 20, 2018 01:41
-
-
Save salmonmoose/f40f6228da9816e9414819eb468dc47f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
max = sys.maxsize | |
min = -sys.maxsize -1 | |
for i in range(min, max): | |
print ('{0} - {1} = 45'.format(i, i-45)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment