Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rsandhusdg/97430e492f549fb1fc1faa91aba7fbdd to your computer and use it in GitHub Desktop.
Save rsandhusdg/97430e492f549fb1fc1faa91aba7fbdd to your computer and use it in GitHub Desktop.
Solutions for HackerRank 30 Day Challenge in Python
def multiples():
N = int(input().strip())
for number in range(1, 11):
print('{0} x {1} = {2}'.format(N, number, N*number))
multiples()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment