Skip to content

Instantly share code, notes, and snippets.

@brockthebear
Created April 20, 2017 19:37
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 brockthebear/e0330335c62c67c31bbbb77b0a8377f0 to your computer and use it in GitHub Desktop.
Save brockthebear/e0330335c62c67c31bbbb77b0a8377f0 to your computer and use it in GitHub Desktop.
#!/bin/python3
import sys
n = int(input().strip())
for x in range(1, 11):
print("{} x {} = {}".format(n, x, n*x))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment