Created
January 18, 2018 10:04
-
-
Save keehyun2/d2847e76d03a583ab6433789a551607a to your computer and use it in GitHub Desktop.
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
| N=int(input()) | |
| str = '' | |
| for i in range(0, N): | |
| for j in range(0, N): | |
| if i > j: | |
| str+=" " | |
| else: | |
| str += "*" | |
| str += "\n" | |
| print(str) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment