Skip to content

Instantly share code, notes, and snippets.

@popey456963
Created October 24, 2015 19:01
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 popey456963/40afb04a3e3d5b542e8f to your computer and use it in GitHub Desktop.
Save popey456963/40afb04a3e3d5b542e8f to your computer and use it in GitHub Desktop.
Sequences
x = input().split(" ")
y = []
for i in range(int(x[0])):
y.append(i*int(x[1]))
out = ""
for i in y:
out = out + str(i)
out = out + " "
print(out[:-1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment