Skip to content

Instantly share code, notes, and snippets.

@kmill
Created August 16, 2016 20:53
Show Gist options
  • Save kmill/51545315689f7c854383b47e73a35de5 to your computer and use it in GitHub Desktop.
Save kmill/51545315689f7c854383b47e73a35de5 to your computer and use it in GitHub Desktop.
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