-
-
Save rsandhusdg/97430e492f549fb1fc1faa91aba7fbdd to your computer and use it in GitHub Desktop.
Solutions for HackerRank 30 Day Challenge in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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