Skip to content

Instantly share code, notes, and snippets.

@TongBaoTran
Created October 14, 2019 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TongBaoTran/e348094afee9f3eaf8408afb074d5e87 to your computer and use it in GitHub Desktop.
Save TongBaoTran/e348094afee9f3eaf8408afb074d5e87 to your computer and use it in GitHub Desktop.
print("Pairs that sum to 5:")
for i in range(1, 6):
for j in range(1, 6):
if i + j == 5:
print("(", i, ",", j, ")")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment