From f5490a7e6d9917bb27c46bd7bc8f39cbf0e4c6a2 Mon Sep 17 00:00:00 2001 From: heerucan Date: Mon, 23 May 2022 23:49:32 +0900 Subject: [PATCH] [BOJ] 2440 --- BOJ/2440.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 BOJ/2440.py diff --git a/BOJ/2440.py b/BOJ/2440.py new file mode 100644 index 0000000..bca61fa --- /dev/null +++ b/BOJ/2440.py @@ -0,0 +1,7 @@ +n = int(input()) + +while n != 0: + for i in range(n+1, 1, -1): + print('*', end='') + print() + n -= 1 \ No newline at end of file