Created
August 16, 2016 20:53
-
-
Save kmill/51545315689f7c854383b47e73a35de5 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
num = 1 | |
while True: | |
if num % 3 == 1 and num % 4 == 2 and num % 5 == 3 and num % 6 == 4: | |
print num | |
break | |
num += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment