Skip to content

Instantly share code, notes, and snippets.

@Svastikkka
Created June 21, 2020 02:21
Show Gist options
  • Save Svastikkka/01e6f05ea329a3441e4242b63313f08d to your computer and use it in GitHub Desktop.
Save Svastikkka/01e6f05ea329a3441e4242b63313f08d to your computer and use it in GitHub Desktop.
## Read input as specified in the question.
## Print output as specified in the question.
num = int(input())
for i in range(0,num):
for j in range(1,num+1-i):
print(j,end="")
print()
@Svastikkka
Copy link
Author

Number Pattern

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment